function vars_update_6103 in Variable API 6
Same name and namespace in other branches
- 6.2 vars.install \vars_update_6103()
Implements hook_update_N().
File
- ./
vars.install, line 95 - Install, update and uninstall functions for the Variable API module.
Code
function vars_update_6103() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = -99 WHERE name = 'vars' AND type = 'module'");
return $ret;
}