Skip to content
Snippets Groups Projects
Commit 3ca46d86 authored by Georgi's avatar Georgi
Browse files

[BUGFIX] Improve license check feedback

parent ca61661a
No related branches found
No related tags found
No related merge requests found
......@@ -58,10 +58,13 @@ class LicenceStatus extends AbstractFormElement {
return $resultArray;
}
/**
* Checks the license status
*
* @return array
*/
private function checkLicenceKey() {
if (!LicenceCheckService::isTYPO3VersionSupported()
|| !LicenceCheckService::isTimeForNextCheck()
|| LicenceCheckService::isInDevelopmentContext()
) {
return [];
}
......
......@@ -56,7 +56,6 @@ class LicenceCheckHook {
*/
public function performLicenseCheck(array $configuration, BackendController $parentBackendController) {
if (!LicenceCheckService::isTYPO3VersionSupported()
|| !LicenceCheckService::isTimeForNextCheck()
|| LicenceCheckService::isInDevelopmentContext()
) {
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment