We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab3c28 commit ecfdb11Copy full SHA for ecfdb11
server/lib/classes/cronjob.inc.php
@@ -149,10 +149,10 @@ protected function onBeforeRun() {
149
150
// next_run time reached (reached === 0 or -1)
151
152
- // calculare next run time based on last_run or current time
+ // calculate next run time based on last_run or current time
153
$app->cron->parseCronLine($this->getSchedule());
154
if($this->_no_skip == true) {
155
- // we need to calculare the next run based on the previous next_run, as we may not skip one.
+ // we need to calculate the next run based on the previous next_run, as we may not skip one.
156
$next_run = $app->cron->getNextRun($this->_next_run);
157
if($next_run === false) {
158
// we could not calculate next run, try it with current time
0 commit comments