diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-03-09 21:34:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-03-09 21:34:24 +0000 |
commit | 36a0b17f630f6e7fc74f5a606589d30d36add1fa (patch) | |
tree | 4a1f886bddca902fbd947c9f68c404cfe38bfbed /modules/forum.module | |
parent | 11988bcd92f1281a22e38e0723daa0a1f5c0f6e1 (diff) | |
download | brdo-36a0b17f630f6e7fc74f5a606589d30d36add1fa.tar.gz brdo-36a0b17f630f6e7fc74f5a606589d30d36add1fa.tar.bz2 |
- Patch #3786 by Gerhard: removed last instance of <none>
Diffstat (limited to 'modules/forum.module')
-rw-r--r-- | modules/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum.module b/modules/forum.module index 5e4079091..22ea82c30 100644 --- a/modules/forum.module +++ b/modules/forum.module @@ -58,7 +58,7 @@ function forum_settings() { if ($voc) { $group = form_select(t('Forum vocabulary'), 'forum_nav_vocabulary', variable_get('forum_nav_vocabulary', ''), $vocs, t("The taxonomy vocabulary that will be used as the navigation tree. The vacabulary's terms define the forums.")); - $group .= _taxonomy_term_select(t('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. This lets you both group and nest forums.'), 1, t('<none>')); + $group .= _taxonomy_term_select(t('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. This lets you both group and nest forums.'), 1, '<'. t('none') .'>'); $output = form_group(t('Forum structure settings'), $group); |