- Bugfix: it was not possible to delete nodes. Reported by Philippe.
parent
710d76171e
commit
8ae5e4417a
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue