| Versionen | |
|---|---|
| drupal6 – drupal7 | node_revision_revert_confirm($form_state, $node_revision) |
Ask for confirmation of the reversion to prevent against CSRF attacks.
modules/
<?php
function node_revision_revert_confirm($form_state, $node_revision) {
$form['#node_revision'] = $node_revision;
return confirm_form($form, t('Are you sure you want to revert to the revision from %revision-date?', array('%revision-date' => format_date($node_revision->revision_timestamp))), 'node/' . $node_revision->nid . '/revisions', '', t('Revert'), t('Cancel'));
}
?>
Kommentare
Kommentar hinzufügen