In includes/schedules.inc on line 621, which reads:

if ($cron == BACKUP_MIGRATE_CRON_BUILTIN && $this->is_enabled() && ($now - $this->last_run) >= $wait_time) {

Should it be using variable_get() ?

if ($cron == BACKUP_MIGRATE_CRON_BUILTIN && $this->is_enabled() && ($now - variable_get('backup_migrate_schedule_last_run_' . $this->get('id'))) >= $wait_time) {
CommentFileSizeAuthor
#1 1991686-1.patch684 bytesAnonymous (not verified)

Comments

Anonymous’s picture

Status: Active » Needs review
StatusFileSize
new684 bytes

That seemd to work. Attached a patch!

ronan’s picture

Status: Needs review » Fixed

Good catch. I ported the code from the 2.x branch to fix this.

Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.