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/user/user.module | |
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/user/user.module')
-rw-r--r-- | modules/user/user.module | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index c1194d66a..c96b9ee7a 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1722,11 +1722,9 @@ function user_admin_account() { l(t('edit'), "user/$account->uid/edit", array(), $destination)); } - $pager = theme('pager', NULL, 50, 0, tablesort_pager()); - if (!empty($pager)) { - $rows[] = array(array('data' => $pager, 'colspan' => '5')); - } - return theme('table', $header, $rows); + $output = theme('table', $header, $rows); + $output .= theme('pager', NULL, 50, 0, tablesort_pager()); + return $output; } function user_configure() { |