Skip to content
Snippets Groups Projects
Commit 99e7c0ec authored by Gerhard Killesreiter's avatar Gerhard Killesreiter
Browse files

#48526, fix taxonomy for blogapi. Patch by walkah

parent 8c506a56
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
...@@ -786,6 +786,9 @@ function taxonomy_node_save($nid, $terms) { ...@@ -786,6 +786,9 @@ function taxonomy_node_save($nid, $terms) {
} }
} }
} }
else if (is_object($term)) {
db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term->tid);
}
else if ($term) { else if ($term) {
db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term); db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term);
} }
......
...@@ -786,6 +786,9 @@ function taxonomy_node_save($nid, $terms) { ...@@ -786,6 +786,9 @@ function taxonomy_node_save($nid, $terms) {
} }
} }
} }
else if (is_object($term)) {
db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term->tid);
}
else if ($term) { else if ($term) {
db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term); db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term);
} }
......
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