diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 5fd485581d..cf57595210 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-02-12 Sergio Martin + + * include/functions_config.php: Fixed the update of the + inventory changes black list on setup for bug 3604298 + 2013-02-12 Sergio Martin * include/help/en/help_warning_status.php diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 7ecf849ca8..2b2bd15c8e 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -149,6 +149,10 @@ function config_update_config () { config_update_value ('replication_mode', (string)get_parameter('replication_mode')); } config_update_value ('log_collector', (bool)get_parameter('log_collector')); + + $inventory_changes_blacklist = get_parameter('inventory_changes_blacklist', array()); + config_update_value ('inventory_changes_blacklist', implode(',',$inventory_changes_blacklist)); + } break; case 'pass':