Skip to content
Snippets Groups Projects
Commit 0516192b authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#211067 by webchick: blogapi_mt_get_post_categories() not using taxonomy_node_get_terms() properly

parent 1f9f8d9c
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
...@@ -421,7 +421,8 @@ function blogapi_mt_get_post_categories($postid, $username, $password) { ...@@ -421,7 +421,8 @@ function blogapi_mt_get_post_categories($postid, $username, $password) {
return blogapi_error($user); return blogapi_error($user);
} }
$terms = module_invoke('taxonomy', 'node_get_terms', $postid, 'tid'); $node = node_load($postid);
$terms = module_invoke('taxonomy', 'node_get_terms', $node, 'tid');
$categories = array(); $categories = array();
foreach ($terms as $term) { foreach ($terms as $term) {
$term_name = $term->name; $term_name = $term->name;
...@@ -430,6 +431,7 @@ function blogapi_mt_get_post_categories($postid, $username, $password) { ...@@ -430,6 +431,7 @@ function blogapi_mt_get_post_categories($postid, $username, $password) {
} }
$categories[] = array('categoryName' => $term_name, 'categoryId' => $term->tid, 'isPrimary' => TRUE); $categories[] = array('categoryName' => $term_name, 'categoryId' => $term->tid, 'isPrimary' => TRUE);
} }
return $categories; return $categories;
} }
......
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