function npop_update_7001 in Node pop-up 7
Change module weight.
File
- ./
npop.install, line 29 - Contains install and update functions for npop module.
Code
function npop_update_7001() {
// Update the npop module weight, for correct altering ds fields.
db_update('system')
->fields(array(
'weight' => -1,
))
->condition('name', 'npop', '=')
->execute();
}