system_update_1002
- Versions
- 5
system_update_1002()
Code
modules/system/system.install, line 3123
<?php
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;
}
?>Login or register to post comments 