This should not be zero by default as that means alerts will be triggered constantly. Defaulting to 300

This commit is contained in:
Neil Lathwood
2015-02-26 01:25:25 +00:00
parent e56a4af8f7
commit d15d228276

View File

@ -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);
}