From c07319fb707c27a7643f8143c379e63aff93b23b Mon Sep 17 00:00:00 2001 From: Luis Calvo Date: Mon, 1 Apr 2019 12:56:10 +0200 Subject: [PATCH] Insert zero into fires_min an fires_max when null Former-commit-id: de1197159053155d4f962d74179933c46189460e --- pandora_console/include/functions_api.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index e57dd31013..b2ac851e8f 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -8794,7 +8794,14 @@ function api_set_alert_actions($id, $id2, $other, $trash1) } $firesMin = $other['data'][2]; + if (!$firesMin) { + $firesMin = 0; + } + $firesMax = $other['data'][3]; + if (!$firesMax) { + $firesMax = 0; + } $values = [ 'id_alert_template_module' => $idAlertTemplateModule,