function system_update_1002 in Drupal 5
Related topics
File
- modules/
system/ system.install, line 3123
Code
function system_update_1002() {
// Make the forum's vocabulary the highest in list, if present
$ret = array();
if ($vid = (int) variable_get('forum_nav_vocabulary', 0)) {
$ret[] = update_sql('UPDATE {vocabulary} SET weight = -10 WHERE vid = ' . $vid);
}
return $ret;
}