summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-12-15 03:39:42 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-12-15 03:39:42 +0000
commit71c4e3ec62427e562965561f5a7b13aa64737595 (patch)
tree312ab891d1692d08008ab3bb20a8bb22f44d1f06 /modules/taxonomy
parent0afbd86d32a94c3b11c6cbe4204e66d8cfa1da3a (diff)
downloadbrdo-71c4e3ec62427e562965561f5a7b13aa64737595.tar.gz
brdo-71c4e3ec62427e562965561f5a7b13aa64737595.tar.bz2
#968458 by Dave Reid, sun, fago: Add Missing hook_entity_presave().
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.module2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index a78436e15..d7417928e 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -404,6 +404,7 @@ function taxonomy_vocabulary_save($vocabulary) {
}
module_invoke_all('taxonomy_vocabulary_presave', $vocabulary);
+ module_invoke_all('entity_presave', $vocabulary, 'taxonomy_vocabulary');
if (!empty($vocabulary->vid) && !empty($vocabulary->name)) {
$status = drupal_write_record('taxonomy_vocabulary', $vocabulary, 'vid');
@@ -554,6 +555,7 @@ function taxonomy_term_save($term) {
field_attach_presave('taxonomy_term', $term);
module_invoke_all('taxonomy_term_presave', $term);
+ module_invoke_all('entity_presave', $term, 'taxonomy_term');
if (empty($term->tid)) {
$op = 'insert';