From d15d22827601bb790dd991152317e373f072324b Mon Sep 17 00:00:00 2001 From: Neil Lathwood Date: Thu, 26 Feb 2015 01:25:25 +0000 Subject: [PATCH] This should not be zero by default as that means alerts will be triggered constantly. Defaulting to 300 --- includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index 05b91e69f2..c2a8eedd49 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -1120,7 +1120,7 @@ function convert_delay($delay) { } elseif(is_numeric($delay)) { $delay_sec = $delay; } else { - $delay_sec = 0; + $delay_sec = 300; } return($delay_sec); }