summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-03-14 20:07:00 +0000
committerDries Buytaert <dries@buytaert.net>2004-03-14 20:07:00 +0000
commit10917b1213a21de40f39e61ea66fdd9dbb8d4b02 (patch)
treec202311edb9a1b0ec656dca6aa18318df3b69d59 /modules/taxonomy/taxonomy.module
parent73ab05f4e6995a87eb4385627f680d3ebadc3186 (diff)
downloadbrdo-10917b1213a21de40f39e61ea66fdd9dbb8d4b02.tar.gz
brdo-10917b1213a21de40f39e61ea66fdd9dbb8d4b02.tar.bz2
- Patch #6470 by Brian: fixed XHTML error with multiple selection boxes.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r--modules/taxonomy/taxonomy.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 96a9a210e..dd0bf4511 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -627,7 +627,7 @@ function _taxonomy_term_select($title, $name, $value, $vocabulary_id, $descripti
$size = min(12, count($options));
- return form_item($title, "<select name=\"edit[$name][]\"". ($multiple ? " multiple size=\"$size\"" : "") . ($extra ? " $extra" : "") .">$select</select>", $description);
+ return form_item($title, "<select name=\"edit[$name][]\"". ($multiple ? " multiple=\"multiple\" size=\"$size\"" : "") . ($extra ? " $extra" : "") .">$select</select>", $description);
}
}