function taxonomy_revision_taxonomy_term_delete in Taxonomy revision 7
Implements hook_taxonomy_term_delete().
File
- ./
taxonomy_revision.module, line 360  - This is the main module file for the Taxonomy revision module.
 
Code
function taxonomy_revision_taxonomy_term_delete($term) {
  db_delete('taxonomy_term_data_revision')
    ->condition('tid', $term->tid)
    ->execute();
}