Merge branch '226-error-500-tras-correccion-de-ticket-223-2' into 'develop'

Resolve "Error 500 tras corrección de ticket 223."

See merge request artica/pandorafms!7465
This commit is contained in:
Enrique Martin 2024-12-09 15:39:40 +00:00
commit af9455f307
1 changed files with 1 additions and 1 deletions

View File

@ -1175,7 +1175,7 @@ class HostDevices extends Wizard
// License precheck.
$license = enterprise_hook('license_get_info');
if (empty($license) === false && license_enterprise_free() === true) {
if (empty($license) === false && is_array($license) === true && license_enterprise_free() === true) {
$license['limit'] = 50;
}