diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index f5d9b47622..17535a90ea 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-08-31 Sergio Martin + + * operation/agentes/networkmap.php: Fixed the groups + combo into the options of networkmaps to show only + visible groups + 2010-08-31 Sergio Martin * extensions/update_manager.php: Removed the update diff --git a/pandora_console/operation/agentes/networkmap.php b/pandora_console/operation/agentes/networkmap.php index 42e48efe64..c587c651ab 100644 --- a/pandora_console/operation/agentes/networkmap.php +++ b/pandora_console/operation/agentes/networkmap.php @@ -244,7 +244,7 @@ $options_form .= __('Name') . '
'; $options_form .= print_input_text ('name', $name, '', 10, 25, true); $options_form .= ''; $options_form .= '' . __('Group') . '
'; -$options_form .= print_select_groups(false, false, false, 'group', $group, '', 'All', 0, true); +$options_form .= print_select_groups(false, 'AR', false, 'group', $group, '', 'All', 0, true); $options_form .= ''; if($activeTab == 'groups' || $activeTab == 'policies'){ $options_form .= '' . __('Module group') . '
';