diff --git a/backup_migrate.install b/backup_migrate.install index 204ee54..f921c32 100644 --- a/backup_migrate.install +++ b/backup_migrate.install @@ -896,16 +896,20 @@ function backup_migrate_update_7306() { /** * 'backup_migrate_backup_memory_limit' vs 'backup_migrate_memory_limit'. - * NodeSquirel support has been disabled. */ function backup_migrate_update_7307() { - $out = ''; - $limit = variable_get('backup_migrate_backup_memory_limit'); if (!empty($limit)) { variable_set('backup_migrate_memory_limit', $limit); variable_del('backup_migrate_backup_memory_limit'); } +} + +/** + * NodeSquirel support has been disabled. + */ +function backup_migrate_update_7308() { + $out = ''; // Notify about disabled NodeSquirrel support. $out .= t('NodeSquirel support has been disabled. NodeSquirrel will cease operations in September 2019 and will allow downloading backups until 1 November 2019. Make sure you switch to an alternate destination if necessary.');