diff options
author | timeless%mozdev.org <> | 2005-12-20 14:26:01 +0100 |
---|---|---|
committer | timeless%mozdev.org <> | 2005-12-20 14:26:01 +0100 |
commit | 4e89a5f63d93bf68a0bc8104beff55a14e67d9bc (patch) | |
tree | 17bc71be1f3bf5f19476399d02a9d1e23dbb8291 | |
parent | dbab0d33fbfe2d0d8abb4bdbcf5393166e2774ee (diff) | |
download | bugzilla-4e89a5f63d93bf68a0bc8104beff55a14e67d9bc.tar.gz bugzilla-4e89a5f63d93bf68a0bc8104beff55a14e67d9bc.tar.xz |
Bug 320902 confirm-user-match is mean to IE
r=mkanat a=justdave
-rw-r--r-- | template/en/default/global/confirm-user-match.html.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/template/en/default/global/confirm-user-match.html.tmpl b/template/en/default/global/confirm-user-match.html.tmpl index 93a249254..17a812c21 100644 --- a/template/en/default/global/confirm-user-match.html.tmpl +++ b/template/en/default/global/confirm-user-match.html.tmpl @@ -101,12 +101,14 @@ <select name="[% field.key FILTER html %]" id="[% field.key FILTER html %]" [% IF fields.${field.key}.type == 'multi' %] + multiple="multiple" [% IF query.value.users.size > 5 %] - multiple="multiple" size="5"> + size="5" [% ELSE %] - multiple="multiple" size="[% query.value.users.size %]"> + size="[% query.value.users.size %]" [% END %] [% END %] + > [% FOREACH match = query.value.users %] <option value="[% match.login FILTER html %]"> [%- match.identity FILTER html -%] |