forum_taxonomy_term_delete
- Versions
- 7
forum_taxonomy_term_delete($tid)
Implement hook_taxonomy().
Code
modules/forum/forum.module, line 375
<?php
function forum_taxonomy_term_delete($tid) {
// For containers, remove the tid from the forum_containers variable.
$containers = variable_get('forum_containers', array());
$key = array_search($tid, $containers);
if ($key !== FALSE) {
unset($containers[$key]);
}
variable_set('forum_containers', $containers);
}
?>Login or register to post comments 