From 44804552585e069e98083417b877b96d4719dcef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 21 Jun 2022 14:45:17 +0200 Subject: [PATCH] Clean unnecesary message --- pandora_console/include/functions_events.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index 934d7c27bc..7934bdaebb 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -2687,10 +2687,10 @@ function events_print_event_table( // Get class name, for the link color, etc. $data[$i] = "".agents_get_alias($event['id_agente']).''; // For System or SNMP generated alerts. - } else if ($event['event_type'] == 'system') { + } else if ($event['event_type'] === 'system') { $data[$i] = __('System'); } else { - $data[$i] = __('Alert').'SNMP'; + $data[$i] = ''; } $i++;