function admin_update_6003 in Admin 6
Same name and namespace in other branches
- 6.2 admin.install \admin_update_6003()
 
Update 6003: Weight admin module.
File
- ./
admin.install, line 56  
Code
function admin_update_6003() {
  // Weight admin to come after other modules -- in particular, admin_theme().
  $return = array();
  $return[] = update_sql("UPDATE {system} SET weight = 1 WHERE name = 'admin' AND type = 'module'");
  return $return;
}