summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/comment.module2
-rw-r--r--modules/comment/comment.module2
-rw-r--r--modules/forum.module2
-rw-r--r--modules/forum/forum.module2
-rw-r--r--modules/path.module2
-rw-r--r--modules/path/path.module2
-rw-r--r--modules/statistics.module12
-rw-r--r--modules/statistics/statistics.module12
-rw-r--r--modules/user.module2
-rw-r--r--modules/user/user.module2
-rw-r--r--modules/watchdog.module2
-rw-r--r--modules/watchdog/watchdog.module2
12 files changed, 22 insertions, 22 deletions
diff --git a/modules/comment.module b/modules/comment.module
index 2d9877a96..f81c632ce 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -980,7 +980,7 @@ function comment_admin_overview($type = 'new') {
$form['operations'][$comment->cid] = array('#value' => l(t('edit'), 'comment/edit/'. $comment->cid, array(), $destination));
}
$form['comments'] = array('#type' => 'checkboxes', '#options' => $comments);
- $form['pager'] = array('#value' => theme('pager', NULL, 50, 0, tablesort_pager()));
+ $form['pager'] = array('#value' => theme('pager', NULL, 50, 0));
return drupal_get_form('comment_admin_overview', $form);
}
diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 2d9877a96..f81c632ce 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -980,7 +980,7 @@ function comment_admin_overview($type = 'new') {
$form['operations'][$comment->cid] = array('#value' => l(t('edit'), 'comment/edit/'. $comment->cid, array(), $destination));
}
$form['comments'] = array('#type' => 'checkboxes', '#options' => $comments);
- $form['pager'] = array('#value' => theme('pager', NULL, 50, 0, tablesort_pager()));
+ $form['pager'] = array('#value' => theme('pager', NULL, 50, 0));
return drupal_get_form('comment_admin_overview', $form);
}
diff --git a/modules/forum.module b/modules/forum.module
index 756b52e35..21b045651 100644
--- a/modules/forum.module
+++ b/modules/forum.module
@@ -1002,7 +1002,7 @@ function theme_forum_topic_list($tid, $topics, $sortby, $forum_per_page) {
}
$output .= theme('table', $forum_topic_list_header, $rows);
- $output .= theme('pager', NULL, $forum_per_page, 0, tablesort_pager());
+ $output .= theme('pager', NULL, $forum_per_page, 0);
return $output;
}
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index 756b52e35..21b045651 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -1002,7 +1002,7 @@ function theme_forum_topic_list($tid, $topics, $sortby, $forum_per_page) {
}
$output .= theme('table', $forum_topic_list_header, $rows);
- $output .= theme('pager', NULL, $forum_per_page, 0, tablesort_pager());
+ $output .= theme('pager', NULL, $forum_per_page, 0);
return $output;
}
diff --git a/modules/path.module b/modules/path.module
index 160e4a7d0..adb6c5f1d 100644
--- a/modules/path.module
+++ b/modules/path.module
@@ -307,7 +307,7 @@ function path_overview() {
}
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 50, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 50, 0);
return $output;
}
diff --git a/modules/path/path.module b/modules/path/path.module
index 160e4a7d0..adb6c5f1d 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -307,7 +307,7 @@ function path_overview() {
}
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 50, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 50, 0);
return $output;
}
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;
}
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
index a4d8bc628..d01983bce 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/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;
}
diff --git a/modules/user.module b/modules/user.module
index d64068b84..3e15ef3e9 100644
--- a/modules/user.module
+++ b/modules/user.module
@@ -1907,7 +1907,7 @@ function user_admin_account() {
}
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 50, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 50, 0);
return $output;
}
diff --git a/modules/user/user.module b/modules/user/user.module
index d64068b84..3e15ef3e9 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1907,7 +1907,7 @@ function user_admin_account() {
}
$output = theme('table', $header, $rows);
- $output .= theme('pager', NULL, 50, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 50, 0);
return $output;
}
diff --git a/modules/watchdog.module b/modules/watchdog.module
index 0f620b2cc..f4fd83bc6 100644
--- a/modules/watchdog.module
+++ b/modules/watchdog.module
@@ -139,7 +139,7 @@ function watchdog_overview() {
}
$output .= theme('table', $header, $rows);
- $output .= theme('pager', NULL, 50, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 50, 0);
return $output;
}
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 0f620b2cc..f4fd83bc6 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -139,7 +139,7 @@ function watchdog_overview() {
}
$output .= theme('table', $header, $rows);
- $output .= theme('pager', NULL, 50, 0, tablesort_pager());
+ $output .= theme('pager', NULL, 50, 0);
return $output;
}