summaryrefslogtreecommitdiff
path: root/modules/blogapi.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-10 12:35:20 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-10 12:35:20 +0000
commit92acb92699bf2127569125689fc522f6edaf7c1c (patch)
tree23068980407a7142f3f34168301ee7a7bc24c869 /modules/blogapi.module
parentf36b456c1a59564ae4ed1ec89ac28c07a1bb35df (diff)
downloadbrdo-92acb92699bf2127569125689fc522f6edaf7c1c.tar.gz
brdo-92acb92699bf2127569125689fc522f6edaf7c1c.tar.bz2
- Patch #33747 by Ber and Moshe: bugfix + code improvement: clean up some of the taxonomy loading code.
Diffstat (limited to 'modules/blogapi.module')
-rw-r--r--modules/blogapi.module5
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/blogapi.module b/modules/blogapi.module
index 8fa29326e..ce7edce8d 100644
--- a/modules/blogapi.module
+++ b/modules/blogapi.module
@@ -274,11 +274,6 @@ function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $cont
return blogapi_error(implode("\n", $errors));
}
- $terms = module_invoke('taxonomy', 'node_get_terms', $node->nid, 'tid');
- foreach ($terms as $term) {
- $node->taxonomy[] = $term->tid;
- }
-
$node = node_submit($node);
node_save($node);
if ($node->nid) {