From 3ddd0c5a8e113ca6167590b256cc7b90cab95367 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Fri, 5 Feb 2016 10:22:23 +0100 Subject: [PATCH] Fixed cron updating problem TICKETS #3329 --- pandora_console/include/functions_cron.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_cron.php b/pandora_console/include/functions_cron.php index c683d75add..dd7d593f84 100644 --- a/pandora_console/include/functions_cron.php +++ b/pandora_console/include/functions_cron.php @@ -22,7 +22,7 @@ include_once($config['homedir'] . "/include/functions_db.php"); function cron_update_module_interval ($module_id, $cron) { // Check for a valid cron - if ($cron == '' || $cron == '* * * * *') { + if ($cron == '') { return; }