diff options
author | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-13 08:25:27 +0000 |
---|---|---|
committer | Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org> | 2006-04-13 08:25:27 +0000 |
commit | d6a164c4008395e323ef8888a3c8867188f40d6b (patch) | |
tree | 490ba9b27d1241a595edc4ff055d77fdfced2420 /modules/forum/forum.module | |
parent | bfb407601b73ccd6fbe79481dcc49517fcbdbe67 (diff) | |
download | brdo-d6a164c4008395e323ef8888a3c8867188f40d6b.tar.gz brdo-d6a164c4008395e323ef8888a3c8867188f40d6b.tar.bz2 |
#5371, drupal_get_destination, pager and tablesort array handling, patch by Steven
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |