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