diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-08-20 01:42:52 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-08-20 01:42:52 +0000 |
commit | ff836870d80f5e1703990e8823bac1e506d96ce1 (patch) | |
tree | d8a28ea8254bd346df068f480396a35078f13cef /modules/system | |
parent | db7a326d3cbd5c3ea28121b1a0914133273b2b66 (diff) | |
download | brdo-ff836870d80f5e1703990e8823bac1e506d96ce1.tar.gz brdo-ff836870d80f5e1703990e8823bac1e506d96ce1.tar.bz2 |
- Patch #652122 by sun, catch, moshe weitzman, Berdir, mr.baileys, chx, David_Rothstein, Scott Reynolds, Damien Tournoud: fix dashboard as the default /admin local task.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 364feb0e0..d19c02912 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -543,13 +543,14 @@ function system_menu() { 'access arguments' => array('access administration pages'), 'type' => MENU_DEFAULT_LOCAL_TASK, 'file' => 'system.admin.inc', + 'weight' => -20, ); $items['admin/by-module'] = array( 'title' => 'By module', 'page callback' => 'system_admin_by_module', 'access arguments' => array('access administration pages'), 'type' => MENU_LOCAL_TASK, - 'weight' => 2, + 'weight' => -18, 'file' => 'system.admin.inc', ); |