diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-04-26 19:44:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-04-26 19:44:40 +0000 |
commit | 7a6f73f49d0cdbb544ca1a8af36ed3502487456c (patch) | |
tree | 9b9765f522c72ada5179f57a7f556ae7402d72bb /modules/statistics | |
parent | bda52632a5aa033d44151c224a39236b223c6b0e (diff) | |
download | brdo-7a6f73f49d0cdbb544ca1a8af36ed3502487456c.tar.gz brdo-7a6f73f49d0cdbb544ca1a8af36ed3502487456c.tar.bz2 |
- Patch #330748 by stBorchert: remove from theme_pager*.
Diffstat (limited to 'modules/statistics')
-rw-r--r-- | modules/statistics/statistics.admin.inc | 8 | ||||
-rw-r--r-- | modules/statistics/statistics.pages.inc | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/statistics/statistics.admin.inc b/modules/statistics/statistics.admin.inc index cfe260a58..7f49deb12 100644 --- a/modules/statistics/statistics.admin.inc +++ b/modules/statistics/statistics.admin.inc @@ -40,7 +40,7 @@ function statistics_recent_hits() { } $output = theme('table', $header, $rows); - $output .= theme('pager', NULL, 30, 0); + $output .= theme('pager', NULL); return $output; } @@ -84,7 +84,7 @@ function statistics_top_pages() { drupal_set_title(t('Top pages in the past %interval', array('%interval' => format_interval(variable_get('statistics_flush_accesslog_timer', 259200)))), PASS_THROUGH); $output = theme('table', $header, $rows); - $output .= theme('pager', NULL, 30, 0); + $output .= theme('pager', NULL); return $output; } @@ -134,7 +134,7 @@ function statistics_top_visitors() { drupal_set_title(t('Top visitors in the past %interval', array('%interval' => format_interval(variable_get('statistics_flush_accesslog_timer', 259200)))), PASS_THROUGH); $output = theme('table', $header, $rows); - $output .= theme('pager', NULL, 30, 0); + $output .= theme('pager', NULL); return $output; } @@ -179,7 +179,7 @@ function statistics_top_referrers() { } $output = theme('table', $header, $rows); - $output .= theme('pager', NULL, 30, 0); + $output .= theme('pager', NULL); return $output; } diff --git a/modules/statistics/statistics.pages.inc b/modules/statistics/statistics.pages.inc index f416054fe..ce508cf61 100644 --- a/modules/statistics/statistics.pages.inc +++ b/modules/statistics/statistics.pages.inc @@ -44,7 +44,7 @@ function statistics_node_tracker() { drupal_set_title($node->title); $output = theme('table', $header, $rows); - $output .= theme('pager', NULL, 30, 0); + $output .= theme('pager', NULL); return $output; } else { @@ -81,7 +81,7 @@ function statistics_user_tracker() { drupal_set_title($account->name); $output = theme('table', $header, $rows); - $output .= theme('pager', NULL, 30, 0); + $output .= theme('pager', NULL); return $output; } else { |