From 8cbe072937b145e384f6278e9856c5fc92ee90bf Mon Sep 17 00:00:00 2001 From: doktornotor Date: Thu, 10 Sep 2015 20:35:26 +0200 Subject: havp - fix crontab handling (Bug #5117) --- config/havp/havp.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config/havp') diff --git a/config/havp/havp.inc b/config/havp/havp.inc index 5ecfcc29..38412f31 100644 --- a/config/havp/havp.inc +++ b/config/havp/havp.inc @@ -521,12 +521,12 @@ function havp_reconfigure_cron() { $optval = array("", "*/1", "*/2", "*/3", "*/4", "*/6", "*/8", "*/12", "0"); $opt = array("0", "*", "*", "*", "*", "root"); $opt[1] = $optval[$havp_config[F_HAVPUPDATE]]; - $on = ($opt[1] !== ""); + $on = ($opt[1] != ""); $crontask = "/usr/bin/nice -n20 " . HVDEF_AVUPD_SCRIPT; // Set new cron task or remove it if inactive if ($on === true) { - install_cron_job($crontask, $on, $opt); + install_cron_job($crontask, true, $opt[0], $opt[1], $opt[2], $opt[3], $opt[4], $opt[5]); } else { install_cron_job($crontask, false); } -- cgit v1.2.3