You are here

function lexicon_taxonomy_term_update in Lexicon 7

Implements hook_taxonomy_term_update().

File

./lexicon.module, line 506
The Lexicon module is used to create lists of terms and definitions to use on a website and optionally mark those terms in the content of the website.

Code

function lexicon_taxonomy_term_update($term) {

  // Clear the filter cache so that the updated term is correctly marked
  // in content.
  _lexicon_clear_filter_cache($term->vid, FALSE);
}