From 8b9c59a3b088f9b48576bafda1fbe931b7bb62d8 Mon Sep 17 00:00:00 2001 From: danielmaya Date: Fri, 1 Dec 2017 12:44:07 +0100 Subject: [PATCH] Fixed Unkwon Icon in GIS --- pandora_console/include/functions_gis.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/include/functions_gis.php b/pandora_console/include/functions_gis.php index 8f1a02f9f0..ee14a2f707 100644 --- a/pandora_console/include/functions_gis.php +++ b/pandora_console/include/functions_gis.php @@ -573,14 +573,17 @@ function gis_get_agent_icon_map($idAgent, $state = false, $status = null) { switch ($status) { case 1: case 4: + case 100: //Critical (BAD or ALERT) $state = ".bad"; break; case 0: + case 300: //Normal (OK) $state = ".ok"; break; case 2: + case 200: //Warning $state = ".warning"; break;