| 5 node.module | node_revision_delete_confirm( |
| 6 node.pages.inc | node_revision_delete_confirm($form_state, $node_revision) |
| 7 node.pages.inc | node_revision_delete_confirm($form, $form_state, $node_revision) |
| 8 node.pages.inc | node_revision_delete_confirm($form, $form_state, $node_revision) |
Ask confirmation for revision deletion to prevent against CSRF attacks.
1 string reference to 'node_revision_delete_confirm'
File
- modules/
node/ node.module, line 1840 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Code
function node_revision_delete_confirm($node) {
$form['node'] = array(
'#type' => 'value',
'#value' => $node,
);
return confirm_form($form, t('Are you sure you want to delete the revision from %revision-date?', array('%revision-date' => format_date($node->revision_timestamp))), 'node/' . $node->nid . '/revisions', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
}
Login or register to post comments