summaryrefslogtreecommitdiff
path: root/modules/node.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/node.module')
-rw-r--r--modules/node.module5
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/node.module b/modules/node.module
index 586ffafba..3a9682612 100644
--- a/modules/node.module
+++ b/modules/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'));
}