summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-12-02 15:38:58 +0000
committerDries Buytaert <dries@buytaert.net>2005-12-02 15:38:58 +0000
commit272c6b95faf3bcf00e3486013b8a894d277cfaa0 (patch)
treec8fff14e7b8c778486734f0b57494734eac82d47 /modules
parent26bd449860f6baa77ec23349b89ad8a41860eda2 (diff)
downloadbrdo-272c6b95faf3bcf00e3486013b8a894d277cfaa0.tar.gz
brdo-272c6b95faf3bcf00e3486013b8a894d277cfaa0.tar.bz2
- Patch #39667 by killes: fixed typo in function call: _forum_get_vid -> _forum_get_vid().
Diffstat (limited to 'modules')
-rw-r--r--modules/forum.module2
-rw-r--r--modules/forum/forum.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum.module b/modules/forum.module
index d6b324d29..dd409b9cd 100644
--- a/modules/forum.module
+++ b/modules/forum.module
@@ -238,7 +238,7 @@ function _forum_parent_select($tid, $title, $child_type) {
$parent = 0;
}
- $children = taxonomy_get_tree(_forum_get_vid, $tid);
+ $children = taxonomy_get_tree(_forum_get_vid(), $tid);
// A term can't be the child of itself, nor of its children.
foreach ($children as $child) {
diff --git a/modules/forum/forum.module b/modules/forum/forum.module
index d6b324d29..dd409b9cd 100644
--- a/modules/forum/forum.module
+++ b/modules/forum/forum.module
@@ -238,7 +238,7 @@ function _forum_parent_select($tid, $title, $child_type) {
$parent = 0;
}
- $children = taxonomy_get_tree(_forum_get_vid, $tid);
+ $children = taxonomy_get_tree(_forum_get_vid(), $tid);
// A term can't be the child of itself, nor of its children.
foreach ($children as $child) {