Fixed cron updating problem TICKETS #3329

This commit is contained in:
fermin831 2016-02-05 10:22:23 +01:00
parent f19f0f0b7c
commit 3ddd0c5a8e
1 changed files with 1 additions and 1 deletions

View File

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