diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-03-14 20:07:00 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-03-14 20:07:00 +0000 |
commit | 10917b1213a21de40f39e61ea66fdd9dbb8d4b02 (patch) | |
tree | c202311edb9a1b0ec656dca6aa18318df3b69d59 /modules/taxonomy | |
parent | 73ab05f4e6995a87eb4385627f680d3ebadc3186 (diff) | |
download | brdo-10917b1213a21de40f39e61ea66fdd9dbb8d4b02.tar.gz brdo-10917b1213a21de40f39e61ea66fdd9dbb8d4b02.tar.bz2 |
- Patch #6470 by Brian: fixed XHTML error with multiple selection boxes.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
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); } } |