You are here

function _revision_deletion_access in Revision Deletion 7

Same name and namespace in other branches
  1. 6 revision_deletion.module \_revision_deletion_access()

Replace _node_revision_access().

1 string reference to '_revision_deletion_access'
revision_deletion_menu_alter in ./revision_deletion.module
Implements hook_menu_alter().

File

./revision_deletion.module, line 105

Code

function _revision_deletion_access($node, $op = 'delete') {
  return _node_revision_access($node, $op) || user_access('administer revision_deletion');
}