summaryrefslogtreecommitdiff
path: root/modules/forum.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/forum.module')
-rw-r--r--modules/forum.module3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/forum.module b/modules/forum.module
index dc867b28e..87cd82db3 100644
--- a/modules/forum.module
+++ b/modules/forum.module
@@ -29,11 +29,12 @@ function forum_perm() {
function forum_conf_options() {
if (module_exist("taxonomy")) {
+ $vocs[0] = "<". t("none") .">";
foreach (taxonomy_get_vocabularies("forum") as $vid => $voc) {
$vocs[$vid] = $voc->name;
}
- if ($vocs) {
+ if ($voc) {
$output .= form_select("Forum vocabulary", "forum_nav_vocabulary", variable_get("forum_nav_vocabulary", ""), $vocs, t("The taxonomy vocabulary that will be used as the navigation tree."));
$output .= _taxonomy_term_select("Containers", "forum_containers", variable_get("forum_containers", array()), variable_get("forum_nav_vocabulary", ""), t("You can choose forums which will not have topics, but will be just containers for other forums."), 1, t("<none>"));