From 6c90a4dd532ff8aaad6073eee599e6a93e6fe921 Mon Sep 17 00:00:00 2001 From: manuel Date: Wed, 7 Aug 2019 13:04:37 +0200 Subject: [PATCH] Fixed bug in alerts details view --- pandora_console/include/functions_alerts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_alerts.php b/pandora_console/include/functions_alerts.php index a6acdd03fe..cc449b3445 100644 --- a/pandora_console/include/functions_alerts.php +++ b/pandora_console/include/functions_alerts.php @@ -2492,7 +2492,7 @@ function alerts_get_action_escalation($action) $escalation[$action['fires_max']] = 1; } else if ($action['fires_min'] < $action['fires_max']) { for ($i = 1; $i <= $action['fires_max']; $i++) { - if ($i <= $action['fires_min']) { + if ($i < $action['fires_min']) { $escalation[$i] = 0; } else { $escalation[$i] = 1;