function pmperson_node_revision_delete in Drupal PM (Project Management) 7
Implements hook_node_revision_delete().
File
- pmperson/
pmperson.module, line 506
Code
function pmperson_node_revision_delete($node) {
// Notice that we're matching a single revision based on the node's vid.
db_delete('pmperson')
->condition('vid', $node->vid)
->execute();
}