function _set_system_weight in Bibliography Module 7
Same name and namespace in other branches
- 6 biblio.install \_set_system_weight()
- 7.2 biblio.install \_set_system_weight()
2 calls to _set_system_weight()
File
- ./
biblio.install, line 247
Code
function _set_system_weight() {
db_update('system')
->fields(array(
'weight' => 9,
))
->condition('name', 'biblio')
->execute();
return;
}