Commit c3274f47 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 255428: Allow multiple user selection in CC pull downs; patch by…

Patch for bug 255428: Allow multiple user selection in CC pull downs; patch by John Beranek <john@redux.org.uk>, r=wurblzap, a=myk.
parent a1d58085
...@@ -202,6 +202,7 @@ function set_assign_to() { ...@@ -202,6 +202,7 @@ function set_assign_to() {
value => cc value => cc
size => 45 size => 45
emptyok => 1 emptyok => 1
multiple => 5
%] %]
</td> </td>
</tr> </tr>
......
...@@ -180,6 +180,7 @@ ...@@ -180,6 +180,7 @@
accesskey => "a" accesskey => "a"
size => 30 size => 30
emptyok => 1 emptyok => 1
multiple => 5
%] %]
</td> </td>
</tr> </tr>
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
# accesskey: optional, input only; accesskey attribute value # accesskey: optional, input only; accesskey attribute value
# size: optional, input only; size attribute value # size: optional, input only; size attribute value
# emptyok: optional, select only; if true, prepend menu option to start of select # emptyok: optional, select only; if true, prepend menu option to start of select
# multiple: optional, do multiselect box, value is size (height) of box
# #
#%] #%]
...@@ -30,6 +31,7 @@ ...@@ -30,6 +31,7 @@
<select name="[% name FILTER html %]" <select name="[% name FILTER html %]"
[% IF onchange %] onchange="[% onchange FILTER html %]" [% END %] [% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
[% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %] [% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
[% IF multiple %] multiple="multiple" size="[% multiple FILTER html %]" [% END %]
> >
[% IF emptyok %] [% IF emptyok %]
<option value=""></option> <option value=""></option>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment