function taxonomy_title_taxonomy_term_update in Taxonomy Title 7
Implements hook_taxonomy_term_update().
File
- ./
taxonomy_title.module, line 123 - Enhanced control over the heading tag for the taxonomy term list pages.
Code
function taxonomy_title_taxonomy_term_update($term) {
if (isset($term->taxonomy_title)) {
taxonomy_title_update($term->tid, $term->taxonomy_title);
}
else {
taxonomy_title_delete($term->tid);
}
}