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/node/node.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/node/node.module')
-rw-r--r-- | modules/node/node.module | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 586ffafba..3a9682612 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -962,15 +962,12 @@ function node_admin_nodes() { l(t('edit'), 'node/'. $node->nid .'/edit', array(), $destination)); } - if ($pager = theme('pager', NULL, 50, 0)) { - $rows[] = array(array('data' => $pager, 'colspan' => '7')); - } - if (!$rows) { $rows[] = array(array('data' => t('No posts available.'), 'colspan' => '6')); } $output .= theme('table', $header, $rows); + $output .= theme('pager', NULL, 50, 0); return form($output, 'post', url('admin/node/action')); } |