diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index c8a57eb136..f2f5dc8ebc 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,7 @@ +2013-01-04 Juan Manuel Ramon + + * include/config_process.php: Removed php notice in this view. + 2013-01-04 Juan Manuel Ramon * include/help/en/help_alert_macros.php diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5520a725de..dcc7afaae3 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -157,6 +157,11 @@ if (isset ($config['id_user'])) { } } +// Check if inventory_changes_blacklist is setted, if not create it +if (!isset($config['inventory_changes_blacklist'])) { + $config['inventory_changes_blacklist'] = array(); +} + set_user_language(); require_once ($ownDir . 'functions_extensions.php');