Skip to content
Snippets Groups Projects
Commit 8ae5e441 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Bugfix: it was not possible to delete nodes.  Reported by Philippe.
parent 710d7617
No related branches found
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -964,6 +964,9 @@ function node_admin() {
case 'delete':
$output = node_delete(array('nid' => arg(3)));
break;
case t('Delete'):
$output = node_delete($edit);
break;
default:
$output = node_admin_nodes();
}
......
......@@ -964,6 +964,9 @@ function node_admin() {
case 'delete':
$output = node_delete(array('nid' => arg(3)));
break;
case t('Delete'):
$output = node_delete($edit);
break;
default:
$output = node_admin_nodes();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment