You are here

function feeds_taxonomy_term_update in Feeds 7

Implements hook_taxonomy_term_update().

Related topics

File

./feeds.module, line 472
Feeds - basic API functions and hook implementations.

Code

function feeds_taxonomy_term_update($term) {
  if (isset($term->feeds_importer_id)) {
    db_delete('feeds_term_item')
      ->condition('tid', $term->tid)
      ->execute();
  }
}