From 19c0857a48a6b2268eb4712058277cd9400fdfe7 Mon Sep 17 00:00:00 2001 From: vgilc Date: Mon, 16 Jan 2012 14:34:25 +0000 Subject: [PATCH] 2012-01-16 Vanessa Gil * godmode/netflow/nf_edit.php godmode/netflow/nf_item_list.php godmode/netflow/nf_report_item.php: Changed name items. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5373 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/godmode/netflow/nf_edit.php | 2 +- pandora_console/godmode/netflow/nf_item_list.php | 6 +++--- pandora_console/godmode/netflow/nf_report_item.php | 4 ++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 3a27066b7a..6d8dcaf0ca 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2012-01-16 Vanessa Gil + + * godmode/netflow/nf_edit.php + godmode/netflow/nf_item_list.php + godmode/netflow/nf_report_item.php: Changed name items. + 2012-01-16 Vanessa Gil * operation/agentes/estado_monitores.php: Fixed bug: count in the group diff --git a/pandora_console/godmode/netflow/nf_edit.php b/pandora_console/godmode/netflow/nf_edit.php index 782871f338..c7e5ee3aa3 100644 --- a/pandora_console/godmode/netflow/nf_edit.php +++ b/pandora_console/godmode/netflow/nf_edit.php @@ -31,7 +31,7 @@ if (! check_acl ($config["id_user"], 0, "AW")) { } //Header -ui_print_page_header (__('Manage Netflow Filter'), "images/networkmap/so_cisco_new.png", false, "", true, $buttons); +ui_print_page_header (__('Manage Netflow Filter'), "images/networkmap/so_cisco_new.png", false, "", true); $delete = (bool) get_parameter ('delete'); $multiple_delete = (bool)get_parameter('multiple_delete', 0); diff --git a/pandora_console/godmode/netflow/nf_item_list.php b/pandora_console/godmode/netflow/nf_item_list.php index 79c5b25027..7cc24f7eec 100644 --- a/pandora_console/godmode/netflow/nf_item_list.php +++ b/pandora_console/godmode/netflow/nf_item_list.php @@ -125,7 +125,7 @@ $table->head[0] = __('Sort'); $table->head[1] = __('Id item'); $table->head[2] = __('Filter'); $table->head[3] = __('Max values'); -$table->head[4] = __('Graph'); +$table->head[4] = __('Item'); $table->head[5] = __('Action') . html_print_checkbox('all_delete', 0, false, true, false, 'check_all_checkboxes();'); @@ -192,10 +192,10 @@ $last_item = $item_max['id_rc']; $data[4] = 'Pie graph'; break; case 2: - $data[4] = 'Table values'; + $data[4] = 'Data table'; break; case 3: - $data[4] = 'Table total period'; + $data[4] = 'Statistics table'; break; } diff --git a/pandora_console/godmode/netflow/nf_report_item.php b/pandora_console/godmode/netflow/nf_report_item.php index b9490bf167..fbc15a773b 100644 --- a/pandora_console/godmode/netflow/nf_report_item.php +++ b/pandora_console/godmode/netflow/nf_report_item.php @@ -155,8 +155,8 @@ $table->data[2][0] = ''.__('Elements').''; $show_graph_options = Array(); $show_graph_options[0] = __('Area graph'); $show_graph_options[1] = __('Pie graph'); -$show_graph_options[2] = __('Table values'); -$show_graph_options[3] = __('Total period'); +$show_graph_options[2] = __('Data table'); +$show_graph_options[3] = __('Statistics table'); $table->data[2][1] = html_print_select ($show_graph_options, 'show_graph', $show_graph,'','',0,true);