Skip to content
Snippets Groups Projects
Commit fd22c347 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #537044 by talor: hook_taxonomy_term_update and...

- Patch #537044 by talor: hook_taxonomy_term_update and hook_taxonomy_term_insert were called backwards.
parent a55a0d99
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -427,13 +427,13 @@ function taxonomy_term_save($term) {
if (!empty($term->tid) && $term->name) {
$status = drupal_write_record('taxonomy_term_data', $term, 'tid');
field_attach_update('taxonomy_term', $term);
module_invoke_all('taxonomy_term_insert', $term);
module_invoke_all('taxonomy_term_update', $term);
}
else {
$status = drupal_write_record('taxonomy_term_data', $term);
_taxonomy_clean_field_cache($term);
field_attach_insert('taxonomy_term', $term);
module_invoke_all('taxonomy_term_update', $term);
module_invoke_all('taxonomy_term_insert', $term);
}
db_delete('taxonomy_term_relation')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment