Fixed month order on cron

This commit is contained in:
fermin831 2018-01-10 18:31:13 +01:00
parent 13170e698e
commit f653fb0f26
1 changed files with 1 additions and 1 deletions

View File

@ -929,7 +929,7 @@ function html_print_extended_select_for_cron ($hour = '*', $minute = '*', $mday
}
# Months
for ($i = 0; $i < 12; $i++) {
for ($i = 1; $i <= 12; $i++) {
$months[$i] = date('F', mktime (0, 0, 0, $i, 1));
}