diff --git a/desktop/modal/cron.human.insert.php b/desktop/modal/cron.human.insert.php index b12b478c2b..baeabec2cc 100644 --- a/desktop/modal/cron.human.insert.php +++ b/desktop/modal/cron.human.insert.php @@ -68,7 +68,7 @@ var hour = (date.getHours() < 10 ? '0' : '') + date.getHours() var strdate = (date.getDate() < 10 ? '0' : '') + date.getDate() var month = ((date.getMonth() + 1) < 10 ? '0' : '') + (date.getMonth() + 1) - var cron = minute + ' ' + hour + ' ' + strdate + ' ' + month + ' ' + date.getDay() + ' ' + date.getFullYear() + var cron = minute + ' ' + hour + ' ' + strdate + ' ' + month + ' * ' + date.getFullYear() document.getElementById('mod_cron_span_cronResult').textContent = cron } })