diff --git a/modules/admin.module b/modules/admin.module
index 276a63a2e5636a47c6909114daef9120be95b82c..b4f5e9c2706fb921ff6c48766f1d232c1dcc57be 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');
 }
 
 ?>