function vertical_tabs_update_6100 in Vertical Tabs 6
Reduce the module weight and remove the form settings variable.
File
- ./
vertical_tabs.install, line 36 - Install, update and uninstall functions for the vertical_tabs module.
Code
function vertical_tabs_update_6100() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 300 WHERE type = 'module' AND name = 'vertical_tabs'");
variable_del('vertical_tabs_settings_form');
return $ret;
}