diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 6919a9355d..20bd0d7fe2 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-04-23 Sancho Lerena + + * include/config_process.php: Fixed a doble include in the + functions_enterprise.php file (breaks the tab "inventory" in the + agent view). + 2010-04-23 Sergio Martin * general/ui/agents_list.php: Changed the all group diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d86eb4e93c..a96128ad1f 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -117,7 +117,7 @@ $config['extensions'] = get_extensions (); if (file_exists ($config["homedir"].'/'.ENTERPRISE_DIR.'/index.php')) { $config['enterprise_installed'] = 1; - enterprise_include ('include/functions_enterprise.php'); + enterprise_include_once ('include/functions_enterprise.php'); } else { $config['enterprise_installed'] = 0; }