PMCORE-3241
This commit is contained in:
@@ -30,8 +30,8 @@ class PmLicenseManager
|
|||||||
$licenseFile = $activeLicenseSetting[config("system.workspace")];
|
$licenseFile = $activeLicenseSetting[config("system.workspace")];
|
||||||
} else {
|
} else {
|
||||||
$activeLicense = $this->getActiveLicense();
|
$activeLicense = $this->getActiveLicense();
|
||||||
$oServerConf->setProperty('ACTIVE_LICENSE', [config("system.workspace") => $activeLicense['LICENSE_PATH']]);
|
$oServerConf->setProperty('ACTIVE_LICENSE', [config("system.workspace") => isset($activeLicense['LICENSE_PATH']) ? $activeLicense['LICENSE_PATH'] : null]);
|
||||||
$licenseFile = $activeLicense['LICENSE_PATH'];
|
$licenseFile = isset($activeLicense['LICENSE_PATH']) ? $activeLicense['LICENSE_PATH'] : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$application = new license_application($licenseFile, false, true, false, true);
|
$application = new license_application($licenseFile, false, true, false, true);
|
||||||
|
|||||||
Reference in New Issue
Block a user