summaryrefslogtreecommitdiff
path: root/modules/statistics.module
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-13 08:25:27 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-13 08:25:27 +0000
commitd6a164c4008395e323ef8888a3c8867188f40d6b (patch)
tree490ba9b27d1241a595edc4ff055d77fdfced2420 /modules/statistics.module
parentbfb407601b73ccd6fbe79481dcc49517fcbdbe67 (diff)
downloadbrdo-d6a164c4008395e323ef8888a3c8867188f40d6b.tar.gz
brdo-d6a164c4008395e323ef8888a3c8867188f40d6b.tar.bz2
#5371, drupal_get_destination, pager and tablesort array handling, patch by Steven
Diffstat (limited to 'modules/statistics.module')
-rw-r--r--modules/statistics.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/statistics.module b/modules/statistics.module
index a4d8bc628..d01983bce 100644
--- a/modules/statistics.module
+++ b/modules/statistics.module
@@ -192,7 +192,7 @@ function statistics_node_tracker() {
drupal_set_title(check_plain($node->title));
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 30, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 30, 0);
return $output;
}
else {
@@ -218,7 +218,7 @@ function statistics_user_tracker() {
drupal_set_title($account->name);
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 30, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 30, 0);
return $output;
}
else {
@@ -249,7 +249,7 @@ function statistics_recent_hits() {
}
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 30, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 30, 0);
return $output;
}
@@ -275,7 +275,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)))));
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 30, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 30, 0);
return $output;
}
@@ -303,7 +303,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)))));
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 30, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 30, 0);
return $output;
}
@@ -329,7 +329,7 @@ function statistics_top_referrers() {
}
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 30, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 30, 0);
return $output;
}