diff options
Diffstat (limited to 'modules/admin.module')
-rw-r--r-- | modules/admin.module | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/modules/admin.module b/modules/admin.module index 276a63a2e..b4f5e9c27 100644 --- a/modules/admin.module +++ b/modules/admin.module @@ -6,12 +6,10 @@ */ function admin_help($section) { switch ($section) { - case "admin/system/modules#description": - return t("Handles the administration pages."); - case "admin": - return t("Welcome to the administration section. Below are the most recent system events."); - case "admin/overview": - return t("This is a complete overview of the site administration page."); + case 'admin/system/modules#description': + return t('Handles the administration pages.'); + case 'admin': + return t('Welcome to the administration section. Below are the most recent system events.'); } } @@ -28,7 +26,7 @@ function admin_link($type) { * Menu callback; provides the main page of the administration section. */ function admin_main_page() { - print theme("page", watchdog_overview("actions")); + watchdog_overview('actions'); } ?> |