function taxonomy_node_update

Implements hook_node_update().

Related topics

Archivo

drupal-7.x/modules/taxonomy/taxonomy.module, line 1978
Enables the organization of content into categories.

Código

function taxonomy_node_update($node) {
  // Always rebuild the node's taxonomy index entries on node save.
  taxonomy_delete_node_index($node);
  taxonomy_build_node_index($node);
}