summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/select-menu.html.tmpl
diff options
context:
space:
mode:
authorolav%bkor.dhs.org <>2006-11-05 09:27:09 +0100
committerolav%bkor.dhs.org <>2006-11-05 09:27:09 +0100
commit8109df6a8bda8d2aa13f1e8545bccff0e06d42a7 (patch)
tree91403e3d55a226064b7840d63bf19a5985cc7e63 /template/en/default/global/select-menu.html.tmpl
parent95da8f434f1cdf24e7702e0b807cb26eca986eb2 (diff)
downloadbugzilla-8109df6a8bda8d2aa13f1e8545bccff0e06d42a7.tar.gz
bugzilla-8109df6a8bda8d2aa13f1e8545bccff0e06d42a7.tar.xz
Bug 309167: change to product which has same component name results in no prompt for component and incorrect assignee
Patch by Olav Vitters <olav@bkor.dhs.org> r=LpSolit a=myk
Diffstat (limited to 'template/en/default/global/select-menu.html.tmpl')
-rw-r--r--template/en/default/global/select-menu.html.tmpl5
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/global/select-menu.html.tmpl b/template/en/default/global/select-menu.html.tmpl
index 725ec88dd..3233ad776 100644
--- a/template/en/default/global/select-menu.html.tmpl
+++ b/template/en/default/global/select-menu.html.tmpl
@@ -24,7 +24,7 @@
#
# multiple: boolean; whether or not the menu is multi-select
#
- # size: integer; if multi-select, the number of items to display at once
+ # size: integer; the number of items to display at once
#
# options: array or hash; the items with which to populate the array.
# If a hash is passed, the hash keys become the names displayed
@@ -45,7 +45,8 @@
<select name="[% name FILTER html %]"
[% IF onchange %]onchange="[% onchange FILTER html %]"[% END %]
- [% IF multiple %] multiple [% IF size %] size="[% size %]" [% END %] [% END %]>
+ [% IF multiple %] multiple [% END %]
+ [% IF size %] size="[% size %]" [% END %]>
[% IF options_type.search("ARRAY") %]
[% FOREACH value = options %]
<option value="[% value FILTER html %]"