- Patch #35279 by asimmonds: fixed typo in pager code.
parent
f2675cfd3a
commit
27c619d16f
|
@ -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');
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue