summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-01-14 20:58:14 +0000
committerDries Buytaert <dries@buytaert.net>2003-01-14 20:58:14 +0000
commit457e5a1b23d232f8099db209e1faddb2ace15a93 (patch)
tree8ae2baa83d4b20f667552572f19472fbed33c5df /modules
parentd268783669922eab6d6b8a2fb4fffc1400af61dc (diff)
downloadbrdo-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.module8
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");
}