There is an error when running cron on any of my sites with the latest dev release (7/15/09) of Backup 2.x. The error is:
Fatal error: Cannot use object of type backup_migrate_profile as array in /var/www/vhosts/agtdev.com/subdomains/naaa/httpdocs/sites/all/modules/contrib/backup_migrate/includes/filters.statusnotify.inc on line 87
It appears to be happening when it is trying to send a backup failed message.
The original code is:
87 mail($settings['filters']['notify_failure_email'], $subject, $body);
When I think it should be:
87 mail($settings->filters['notify_failure_email'], $subject, $body);
Changing the ...$settings['filters']... to ...$settings->filters...
| Comment | File | Size | Author |
|---|---|---|---|
| filters.statusnotify.inc-20090803-line87-error.patch | 453 bytes | alphageekboy |
Comments
Comment #1
alphageekboy commentedComment #2
ronan commentedI actually fixed that last night, and it should be working on the dev that rolled this morning (2009-Aug-03), let me know if it's still causing an issue for you
Comment #3
alphageekboy commentedThank you SIR. The last dev release from 8/3/2009 did indeed fix my issue.