summaryrefslogtreecommitdiff
path: root/modules/watchdog.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r--modules/watchdog.module8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module
index f97464a16..5981f58d7 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -139,10 +139,14 @@ function watchdog_admin() {
default:
$output = watchdog_overview(arg(2));
}
- return $output;
+ print theme("header");
+ print $output;
+ print theme("footer");
}
else {
- return message_access();
+ print theme("header");
+ print message_access();
+ print theme("footer");
}
}