From 272c6b95faf3bcf00e3486013b8a894d277cfaa0 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Fri, 2 Dec 2005 15:38:58 +0000 Subject: [PATCH] - Patch #39667 by killes: fixed typo in function call: _forum_get_vid -> _forum_get_vid(). --- modules/forum.module | 2 +- modules/forum/forum.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/forum.module b/modules/forum.module index d6b324d29155..dd409b9cdc90 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 d6b324d29155..dd409b9cdc90 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) { -- GitLab