You are here

function location_node_node_delete_revision in Location 7.4

Implementation of hook_node_delete_revision().

File

./location_node.module, line 29
Associate locations with nodes.

Code

function location_node_node_delete_revision($node) {
  $locations = array();
  location_save_locations($locations, array(
    'vid' => $node->vid,
  ));
}