function simplify_update_7301 in Simplify 7.3
Update module weight.
File
- ./
simplify.install, line 90 - Install, update and uninstall functions for the Simplify module.
Code
function simplify_update_7301(&$sandbox) {
db_update('system')
->fields(array(
'weight' => 5,
))
->condition('name', 'simplify')
->execute();
}