diff options
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"); } |