- Patch #80902 by asimmonds: fixed delting of multiple nodes.
parent
3c30ae6715
commit
16e19a71c2
|
@ -1428,7 +1428,7 @@ function node_admin_content() {
|
||||||
$output = drupal_get_form('node_filter_form');
|
$output = drupal_get_form('node_filter_form');
|
||||||
|
|
||||||
if ($_POST['edit']['operation'] == 'delete' && $_POST['edit']['nodes']) {
|
if ($_POST['edit']['operation'] == 'delete' && $_POST['edit']['nodes']) {
|
||||||
return node_multiple_delete_confirm();
|
return drupal_get_form('node_multiple_delete_confirm');
|
||||||
}
|
}
|
||||||
// Call the form first, to allow for the form_values array to be populated.
|
// Call the form first, to allow for the form_values array to be populated.
|
||||||
$output .= drupal_get_form('node_admin_nodes');
|
$output .= drupal_get_form('node_admin_nodes');
|
||||||
|
|
Loading…
Reference in New Issue