- Patch #35279 by asimmonds: fixed typo in pager code.

4.7.x
Dries Buytaert 2005-10-26 08:06:56 +00:00
parent f2675cfd3a
commit 27c619d16f
2 changed files with 2 additions and 2 deletions

View File

@ -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');

View File

@ -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');