diff options
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r-- | modules/tracker/tracker.module | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module index d4112f511..97a3995b1 100644 --- a/modules/tracker/tracker.module +++ b/modules/tracker/tracker.module @@ -108,14 +108,11 @@ function tracker_page($uid = 0) { ); } - if ($pager = theme('pager', NULL, 25, 0)) { - $rows[] = array(array('data' => $pager, 'colspan' => '5')); - } - $header = array(t('Type'), t('Post'), t('Author'), t('Replies'), t('Last post')); $output .= '<div id="tracker">'; $output .= theme('table', $header, $rows); + $output .= theme('pager', NULL, 25, 0); $output .= '</div>'; return $output; |