From 9d7b047e72f4021db0cb4a2575bd4b3592ec3460 Mon Sep 17 00:00:00 2001 From: "edu.corral" Date: Fri, 3 Jun 2022 14:15:51 +0200 Subject: [PATCH] 9037 fixed agent view controls --- .../operation/agentes/estado_agente.php | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index a088233bc7..0210545a26 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -249,26 +249,21 @@ echo '
'; -echo ''; +echo ''; -echo __('Group').' '; +echo __('Group').' '.' '.' '; $groups = users_get_groups(false, $access); html_print_select_groups(false, $access, true, 'group_id', $group_id, 'this.form.submit()', '', '', false, false, true, '', false); -echo ''; +echo ''.' '.' '.' '.' '.' '; -echo __('Recursion').' '; +echo __('Recursion').' '.' '.' '; html_print_checkbox('recursion', 1, $recursion, false, false, 'this.form.submit()'); echo ''; -echo __('Search').' '; -html_print_input_text('search', $search, '', 15); - -echo ''; - $fields = []; $fields[AGENT_STATUS_NORMAL] = __('Normal'); $fields[AGENT_STATUS_WARNING] = __('Warning'); @@ -277,12 +272,17 @@ $fields[AGENT_STATUS_UNKNOWN] = __('Unknown'); $fields[AGENT_STATUS_NOT_NORMAL] = __('Not normal'); $fields[AGENT_STATUS_NOT_INIT] = __('Not init'); -echo __('Status').' '; +echo __('Status').' '.' '.' '; html_print_select($fields, 'status', $status, 'this.form.submit()', __('All'), AGENT_STATUS_ALL, false, false, true, '', false, 'width: 90px;'); -echo ''; +echo ''; -echo __('Search in custom fields').' '; +echo __('Search').' '.' '.' '; +html_print_input_text('search', $search, '', 15); + +echo ''; + +echo __('Search in custom fields').' '.' '.' '; html_print_input_text('search_custom', $search_custom, '', 15); echo '';