diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-25 16:12:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-25 16:12:09 +0000 |
commit | 9abe339c99a5596c8c3503fa62ecd17e4bcb74ab (patch) | |
tree | 3fb1efc55ed9ebbf270670f85d24377b525cfa73 /modules/tracker | |
parent | d2040abf3810e78f26617932f14f312f38054f6a (diff) | |
download | brdo-9abe339c99a5596c8c3503fa62ecd17e4bcb74ab.tar.gz brdo-9abe339c99a5596c8c3503fa62ecd17e4bcb74ab.tar.bz2 |
Patches from Moshe:
- Tracker module: adds a missing call to tablesort_pager().
- Tablesort:
+ add 'title' attributes
+ let arbitrary querystring params flow through to pager links
+ removed ugly border around the arrow
Diffstat (limited to 'modules/tracker')
-rw-r--r-- | modules/tracker/tracker.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module index 31eefb0c2..1f8b4ea48 100644 --- a/modules/tracker/tracker.module +++ b/modules/tracker/tracker.module @@ -75,7 +75,7 @@ function tracker_posts($id = 0) { $rows[] = array(array("data" => $type, "class" => "type"), array("data" => $title . $comments, "class" => "content"), array("data" => $author, "class" => "author"), array("data" => format_date($node->last_activity, "small"), "class" => "last_post")); } - if ($pager = pager_display(NULL, 10)) { + if ($pager = pager_display(NULL, 10, 0, "default", tablesort_pager())) { $rows[] = array(array("data" => $pager, "colspan" => 4)); } |