function taxonomy_node_delete

Implements hook_node_delete().

Related topics

File

drupal/modules/taxonomy/taxonomy.module, line 1998
Enables the organization of content into categories.

Code

function taxonomy_node_delete($node) {

  // Clean up the {taxonomy_index} table when nodes are deleted.
  taxonomy_delete_node_index($node);
}