function document_node_revision_delete in Document 8.x
Same name and namespace in other branches
- 7 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);
}