You are here

function document_node_revision_delete in Document 7

Same name and namespace in other branches
  1. 8.x document.module \document_node_revision_delete()

Implementation of hook_nodeapi().

File

./document.module, line 424

Code

function document_node_revision_delete($node) {

  // Notice that we're matching a single revision based on the node's vid.
  _document_delete_revision($node->nid, $node->vid);
}