From f1d034fa02800e2283dccec7194865c75ee040ee Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Tue, 31 Aug 2010 09:39:58 +0000 Subject: [PATCH] 2010-08-31 Sergio Martin * operation/agentes/networkmap.php: Fixed the groups combo into the options of networkmaps to show only visible groups git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3202 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/operation/agentes/networkmap.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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') . '
';