function admin_menu_update_6302 in Administration menu 6.3
Increase the module weight.
See also
File
- ./
admin_menu.install, line 130 - Install, update, and uninstall functions for the admin menu module.
Code
function admin_menu_update_6302() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 100 WHERE name = 'admin_menu'");
return $ret;
}