function path_taxonomy_term_delete

Implements hook_taxonomy_term_delete().

File

drupal/modules/path/path.module, line 310
Enables users to rename URLs.

Code

function path_taxonomy_term_delete($term) {

  // Delete all aliases associated with this term.
  path_delete(array(
    'source' => 'taxonomy/term/' . $term->tid,
  ));
}