summaryrefslogtreecommitdiff
path: root/modules/blogapi/blogapi.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-06-02 18:46:04 +0000
committerDries Buytaert <dries@buytaert.net>2004-06-02 18:46:04 +0000
commit7640f490a88785a94f2606acc37381d19bdeda26 (patch)
treee4386f46da18106781f2756649df68d597a983e0 /modules/blogapi/blogapi.module
parentc3463a22aef32680108e835367247cd5e04d214e (diff)
downloadbrdo-7640f490a88785a94f2606acc37381d19bdeda26.tar.gz
brdo-7640f490a88785a94f2606acc37381d19bdeda26.tar.bz2
- Patch #8244 by walkah: Taxonomy_get_tree changes break mt.getCategoryList
Diffstat (limited to 'modules/blogapi/blogapi.module')
-rw-r--r--modules/blogapi/blogapi.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module
index 44c65307f..83f2c9494 100644
--- a/modules/blogapi/blogapi.module
+++ b/modules/blogapi/blogapi.module
@@ -263,7 +263,7 @@ function blogapi_get_category_list($req_params) {
$categories = array();
if ($vocabularies) {
foreach ($vocabularies as $vocabulary) {
- $terms = module_invoke('taxonomy', 'get_tree', $vocabulary->vid, 0, -1, 'tid');
+ $terms = module_invoke('taxonomy', 'get_tree', $vocabulary->vid, 0, -1);
foreach ($terms as $term) {
$term_name = $term->name;
foreach (module_invoke('taxonomy', 'get_parents', $term->tid, 'tid') as $parent) {