summaryrefslogtreecommitdiff
path: root/modules/watchdog.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/watchdog.module')
-rw-r--r--modules/watchdog.module6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module
index f08313706..bf2192566 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -117,13 +117,9 @@ function watchdog_overview() {
$rows[] = array(array('data' => t('No log messages available.'), 'colspan' => '7'));
}
- $pager = theme('pager', NULL, 50, 0, tablesort_pager());
- if (!empty($pager)) {
- $rows[] = array(array('data' => $pager, 'colspan' => '7'));
- }
-
$output = '<div class="container-inline">'. form($form) .'</div>';
$output .= theme('table', $header, $rows);
+ $output .= theme('pager', NULL, 50, 0, tablesort_pager());
return $output;
}