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