From 6c45f51e64c34d233102d76f3d4a31c53e893ebe Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Thu, 25 Jul 2019 16:07:42 +0200 Subject: [PATCH 01/38] Deleted help icon --- pandora_console/include/functions_profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_profile.php b/pandora_console/include/functions_profile.php index 3308cd89b7..dc9f92eb64 100644 --- a/pandora_console/include/functions_profile.php +++ b/pandora_console/include/functions_profile.php @@ -314,7 +314,7 @@ function profile_print_profile_table($id) $tags = tags_get_all_tags(); $data['tags'] = html_print_select($tags, 'assign_tags[]', '', '', __('Any'), '', true, true); - $data['hierarchy'] = html_print_checkbox('no_hierarchy', 1, false, true).ui_print_help_icon('no_hierarchy', true); + $data['hierarchy'] = html_print_checkbox('no_hierarchy', 1, false, true); $data['actions'] = html_print_input_image('add', 'images/add.png', 1, '', true); $data['actions'] .= html_print_input_hidden('id', $id, true); From a9a2ca5178077b49b58454e9a3fafab046574625 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Fri, 30 Aug 2019 11:58:50 +0200 Subject: [PATCH 02/38] Change label for disabled status - #4573 --- pandora_console/godmode/agentes/agent_manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 6ee2343fc0..76eacc0808 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -667,7 +667,7 @@ $table_adv_status .= html_print_checkbox_switch( $disabled, true ); -$table_adv_status .= '

'.__('Disabled').': '.ui_print_help_tip(__('If the remote configuration is enabled, it will also go into standby mode when disabling it.'), true).'

'; +$table_adv_status .= '

'.__('Disabled mode').': '.ui_print_help_tip(__('If the remote configuration is enabled, it will also go into standby mode when disabling it.'), true).'

'; $table_adv_status .= ''; // Url address. From 90b61533f856dfb9b8f7693c3d9bc89a47e71243 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Tue, 10 Sep 2019 10:26:28 +0200 Subject: [PATCH 03/38] Fixed visual bugs in black theme - #4572 --- pandora_console/general/news_dialog.php | 2 +- pandora_console/images/icon_error_db.png | Bin 2165 -> 2379 bytes pandora_console/images/icon_error_mr.png | Bin 2183 -> 2415 bytes pandora_console/images/icon_info_mr.png | Bin 1653 -> 1690 bytes pandora_console/images/icon_success_db.png | Bin 2255 -> 2082 bytes pandora_console/images/icon_success_mr.png | Bin 2228 -> 1987 bytes pandora_console/images/icon_warning_db.png | Bin 2121 -> 1882 bytes .../include/styles/pandora_black.css | 41 +++++++++++++++++- 8 files changed, 40 insertions(+), 3 deletions(-) diff --git a/pandora_console/general/news_dialog.php b/pandora_console/general/news_dialog.php index 37ca016edf..9ab685d39f 100644 --- a/pandora_console/general/news_dialog.php +++ b/pandora_console/general/news_dialog.php @@ -40,7 +40,7 @@ if (!empty($news)) { // Prints news dialog template echo ''; // Learn mode / Normal mode. $table_adv_module_mode = '

'.__('Module definition').':

'; From b12facc89b35131b49027cdd882e228dff43625b Mon Sep 17 00:00:00 2001 From: manuel Date: Thu, 12 Sep 2019 12:25:31 +0200 Subject: [PATCH 05/38] Remove hint in metaconsole monitoring view --- pandora_console/include/functions_html.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 08d60dbb6e..2f66590a1c 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2812,9 +2812,12 @@ function html_print_autocomplete_modules( ['style' => 'background: url(images/search_module.png) no-repeat right;'] ); html_print_input_hidden($name.'_hidden', $id_agent_module); - ui_print_help_tip(__('Type at least two characters to search the module.'), false); - $javascript_ajax_page = ui_get_full_url('ajax.php', false, false, false, false); + if (!is_metaconsole()) { + ui_print_help_tip(__('Type at least two characters to search the module.'), false); + } + + $javascript_ajax_page = ui_get_full_url('ajax.php', false, false, false); ?>