function backup_migrate_update_6201 in Backup and Migrate 6.2
Disable the NodeSquirrel module if it's installed.
File
- ./
backup_migrate.install, line 409 - Install hooks for Backup and Migrate.
Code
function backup_migrate_update_6201() {
if (module_exists('nodesquirrel')) {
module_disable(array(
'nodesquirrel',
));
drupal_set_message(t("The NodeSquirrel module was disabled. NodeSquirrel support is now built into Backup and Migrate."));
}
return array();
}