summaryrefslogtreecommitdiff
path: root/modules/watchdog/watchdog.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/watchdog/watchdog.module')
-rw-r--r--modules/watchdog/watchdog.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index c998c91a4..64a580fef 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -125,7 +125,7 @@ function watchdog_overview() {
$output = '<div class="container-inline">'. form($form) .'</div>';
$output .= theme('table', $header, $rows);
- print theme('page', $output);
+ return $output;
}
/**
@@ -146,7 +146,7 @@ function watchdog_event($id) {
$output .= ' <tr><th>'. t('Hostname') ."</th><td>$watchdog->hostname</td></tr>";
$output .= '</table>';
}
- print theme('page', $output);
+ return $output;
}
function _watchdog_get_message_types() {