You are here

function admin_menu_update_7302 in Administration menu 7.3

Increase the module weight.

See also

admin_menu_install()

File

./admin_menu.install, line 85
Install, update, and uninstall functions for the admin menu module.

Code

function admin_menu_update_7302() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('type', 'module')
    ->condition('name', 'admin_menu')
    ->execute();
}