function redirect_update_3 in Redirect 7
Same name and namespace in other branches
- 7.2 redirect.install \redirect_update_3()
Enable bootstrap status for the module.
File
- ./
redirect.install, line 187 - Install, update and uninstall functions for the redirect module.
Code
function redirect_update_3() {
db_update('system')
->fields(array(
'bootstrap' => 1,
))
->condition('type', 'module')
->condition('name', 'redirect')
->execute();
}