From 7d8da2c3991d108488f43de5e2cfcc5b799b94ef Mon Sep 17 00:00:00 2001 From: "Michael Kaufmann (d00p)" Date: Tue, 14 Jan 2014 10:25:31 +0100 Subject: [PATCH] month starts at 1 not 0 Signed-off-by: Michael Kaufmann (d00p) --- lib/functions/froxlor/function.checkCrondConfigurationFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions/froxlor/function.checkCrondConfigurationFile.php b/lib/functions/froxlor/function.checkCrondConfigurationFile.php index aa84bef1..ffb25edb 100644 --- a/lib/functions/froxlor/function.checkCrondConfigurationFile.php +++ b/lib/functions/froxlor/function.checkCrondConfigurationFile.php @@ -70,7 +70,7 @@ function checkCrondConfigurationFile() { } break; case "MONTH": - $cronfile .= $month_delay." 0 0 " . $minvalue . " * "; + $cronfile .= $month_delay." 0 1 " . $minvalue . " * "; $month_delay += 7; break; case "WEEK":