You are here

function field_weight_multiple_node_revision_delete in Field display weights (per node) 7.2

Implements hook_node_revision_delete().

Clean up field_weight_multiple table so we don't get any orphaned entries.

File

modules/field_weight_multiple.module, line 334

Code

function field_weight_multiple_node_revision_delete($node) {
  db_delete('field_weight_multiple')
    ->condition('vid', $node->vid)
    ->execute();
}