diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-09-24 07:53:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-09-24 07:53:26 +0000 |
commit | 67e68fc679643ccb7c79e7b160ae22813d44ed97 (patch) | |
tree | aa9feb5f2b79913c0c2429b8a0c830e0bc3af526 /modules/aggregator | |
parent | e4ec9ad36dd6850e0e17bb75f977c03a7c2735f7 (diff) | |
download | brdo-67e68fc679643ccb7c79e7b160ae22813d44ed97.tar.gz brdo-67e68fc679643ccb7c79e7b160ae22813d44ed97.tar.bz2 |
- Patch #28786 by Neil: move pagers out of table.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.module | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 99cfed63e..0c07a99d0 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -1004,9 +1004,7 @@ function _aggregator_page_list($sql, $op, $header = '') { } $output .= '</div>'; - if ($pager = theme('pager', NULL, 20, 0)) { - $output .= $pager; - } + $output .= theme('pager', NULL, 20, 0); // arg(1) is undefined if we are at the top aggregator URL // is there a better way to do this? |