- Usability improvement; the drop-down menu showed the first vocabulary in

the list even though it has not been selected.  Reported by Adam Shand.
4.2.x
Dries Buytaert 2003-01-02 23:26:43 +00:00
parent 2b5dfdafa5
commit 408bf86abd
2 changed files with 4 additions and 2 deletions

View File

@ -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>"));

View File

@ -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>"));