function page_theme_update_7202 in Page Theme 7.2
Set module's weight to 50.
File
- ./
page_theme.install, line 278 - Install, update and uninstall functions for the page_theme module.
Code
function page_theme_update_7202() {
db_update('system')
->fields(array(
'weight' => 50,
))
->condition('name', 'page_theme')
->execute();
}