From 71731195ec7b3c13ddec0e97972b133b17805df1 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Tue, 1 Jun 2010 16:41:05 +0000 Subject: [PATCH] 2010-06-01 Sergio Martin * operation/agentes/status_monitor.php: Fixed the width of the combos avoid displace objects. For bug: 3008756 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2840 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/operation/agentes/status_monitor.php | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index fa0e804b1f..c68657235d 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-06-01 Sergio Martin + + * operation/agentes/status_monitor.php: Fixed the width + of the combos avoid displace objects. + For bug: 3008756 + 2010-06-01 Sergio Martin * godmode/groups/group_list.php: Change the way of diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index b47e8de538..b1226ada89 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -45,7 +45,7 @@ echo ''.__('Group').''; echo ''; print_select (get_user_groups (), "ag_group", $ag_group, 'this.form.submit();', - '', '0', false, false, false, 'w130'); + '', '0', false, false, false, 'w130', false, 'width:150px;'); echo ""; echo "".__('Monitor status').""; @@ -58,20 +58,20 @@ $fields[3] = __('Unknown'); $fields[4] = __('Not normal'); //default $fields[5] = __('Not init'); -print_select ($fields, "status", $status, 'this.form.submit();', __('All'), -1); +print_select ($fields, "status", $status, 'this.form.submit();', __('All'), -1, false, false, true, '', false, 'width: 125px;'); echo ''; echo ''.__('Module group').''; echo ''; print_select_from_sql ("SELECT * FROM tmodule_group ORDER BY name", - 'modulegroup', $modulegroup, '',__('All'), 0); + 'modulegroup', $modulegroup, '',__('All'), 0, false, false, true, false, 'width: 100px;'); echo ''.__('Module name').''; echo ''; $modules = get_db_all_rows_filter ('tagente_modulo', false, 'DISTINCT(nombre)'); print_select (index_array ($modules, 'nombre', 'nombre'), "ag_modulename", - $ag_modulename, 'this.form.submit();', __('All'), ''); + $ag_modulename, 'this.form.submit();', __('All'), '', false, false, true, '', false, 'width: 150px;'); echo ''.__('Search').'';