From 597e2b057da97fdaaff56f2e5f400ef9ccd24091 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 8 Sep 2020 11:51:17 +0200 Subject: [PATCH] minor fix - error messages --- pandora_server/lib/PandoraFMS/DB.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/DB.pm b/pandora_server/lib/PandoraFMS/DB.pm index ae07c49c96..6756178563 100644 --- a/pandora_server/lib/PandoraFMS/DB.pm +++ b/pandora_server/lib/PandoraFMS/DB.pm @@ -1365,6 +1365,8 @@ sub db_concat ($$) { ######################################################################## sub get_priority_name ($) { my ($priority_id) = @_; + + return '' unless defined($priority_id); if ($priority_id == 0) { return 'Maintenance';