diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-01-14 20:58:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-01-14 20:58:14 +0000 |
commit | 457e5a1b23d232f8099db209e1faddb2ace15a93 (patch) | |
tree | 8ae2baa83d4b20f667552572f19472fbed33c5df /modules | |
parent | d268783669922eab6d6b8a2fb4fffc1400af61dc (diff) | |
download | brdo-457e5a1b23d232f8099db209e1faddb2ace15a93.tar.gz brdo-457e5a1b23d232f8099db209e1faddb2ace15a93.tar.bz2 |
- Small improvement to the admin menu based on feedback from Michael.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin.module | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/admin.module b/modules/admin.module index 7dbe72714..9a8d039b6 100644 --- a/modules/admin.module +++ b/modules/admin.module @@ -55,16 +55,18 @@ function admin_page($mod) { print "<h2>". t("Administration") ."</h2>"; } + /* if ($menu = menu_menu()) { print "$menu<br />"; } - - print "<br /><hr /><br />"; + */ if ($help = menu_help()) { - print "<small>$help</small><br /><br />"; + print "<small>$help</small>"; } + print "<hr /><br />"; + if (arg(1)) { print module_invoke(arg(1), "admin"); } |