You are here

function vars_update_6103 in Variable API 6.2

Same name and namespace in other branches
  1. 6 vars.install \vars_update_6103()

Implements hook_update_N().

File

./vars.install, line 94
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;
}