Fixed module_manager with Agent limit surpassed or license expired
This commit is contained in:
parent
a11b674467
commit
419b3f4fb1
|
@ -1392,6 +1392,11 @@ function enterprise_installed()
|
||||||
{
|
{
|
||||||
$return = false;
|
$return = false;
|
||||||
|
|
||||||
|
// Load enterprise extensions.
|
||||||
|
if (defined('DESTDIR')) {
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
if (defined('PANDORA_ENTERPRISE')) {
|
if (defined('PANDORA_ENTERPRISE')) {
|
||||||
if (PANDORA_ENTERPRISE) {
|
if (PANDORA_ENTERPRISE) {
|
||||||
$return = true;
|
$return = true;
|
||||||
|
@ -1444,7 +1449,7 @@ function enterprise_include($filename)
|
||||||
{
|
{
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
// Load enterprise extensions
|
// Load enterprise extensions.
|
||||||
if (defined('DESTDIR')) {
|
if (defined('DESTDIR')) {
|
||||||
$destdir = DESTDIR;
|
$destdir = DESTDIR;
|
||||||
} else {
|
} else {
|
||||||
|
@ -1474,7 +1479,13 @@ function enterprise_include_once($filename)
|
||||||
{
|
{
|
||||||
global $config;
|
global $config;
|
||||||
|
|
||||||
// Load enterprise extensions
|
// Load enterprise extensions.
|
||||||
|
if (defined('DESTDIR')) {
|
||||||
|
$destdir = DESTDIR;
|
||||||
|
} else {
|
||||||
|
$destdir = '';
|
||||||
|
}
|
||||||
|
|
||||||
$filepath = realpath($config['homedir'].'/'.ENTERPRISE_DIR.'/'.$filename);
|
$filepath = realpath($config['homedir'].'/'.ENTERPRISE_DIR.'/'.$filename);
|
||||||
|
|
||||||
if ($filepath === false) {
|
if ($filepath === false) {
|
||||||
|
|
Loading…
Reference in New Issue