You are here

function admin_update_6003 in Admin 6.2

Same name and namespace in other branches
  1. 6 admin.install \admin_update_6003()

Update 6003: Weight admin module.

File

./admin.install, line 69

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;
}