diff --git a/modules/node.module b/modules/node.module index a318e5d6d77..95df179af79 100644 --- a/modules/node.module +++ b/modules/node.module @@ -1150,7 +1150,7 @@ function node_admin_nodes() { $form['operations'][$node->nid] = array('#value' => l(t('edit'), 'node/'. $node->nid .'/edit', array(), $destination)); } $form['nodes'] = array('#type' => 'checkboxes', '#options' => $nodes); - $form['pager'] = array('value' => theme('pager', NULL, 50, 0)); + $form['pager'] = array('#value' => theme('pager', NULL, 50, 0)); $form['#method'] = 'post'; $form['#action'] = url('admin/node/action'); diff --git a/modules/node/node.module b/modules/node/node.module index a318e5d6d77..95df179af79 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1150,7 +1150,7 @@ function node_admin_nodes() { $form['operations'][$node->nid] = array('#value' => l(t('edit'), 'node/'. $node->nid .'/edit', array(), $destination)); } $form['nodes'] = array('#type' => 'checkboxes', '#options' => $nodes); - $form['pager'] = array('value' => theme('pager', NULL, 50, 0)); + $form['pager'] = array('#value' => theme('pager', NULL, 50, 0)); $form['#method'] = 'post'; $form['#action'] = url('admin/node/action');