]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 255428: Allow multiple user selection in CC pull downs; patch by John...
authorjocuri%softhome.net <>
Sun, 16 Jan 2005 22:22:09 +0000 (22:22 +0000)
committerjocuri%softhome.net <>
Sun, 16 Jan 2005 22:22:09 +0000 (22:22 +0000)
template/en/default/bug/create/create.html.tmpl
template/en/default/bug/edit.html.tmpl
template/en/default/global/userselect.html.tmpl

index e3551627be6f768214dfa686ae858c450d3ab758..dd0d4f13c6d78416fc863e9970b0239b2a22e3ce 100644 (file)
@@ -202,6 +202,7 @@ function set_assign_to() {
          value => cc
          size => 45
          emptyok => 1
+         multiple => 5
        %]
     </td>
   </tr>
index 0ba3638d8543c686f48f11f62190bf36b6975033..6b43809d69b1726567a2277dcf22215d5e01dde8 100644 (file)
             accesskey => "a"
             size => 30
             emptyok => 1
+            multiple => 5
           %]
       </td>
     </tr>
index d83a5905b360de4511188d16034050c6fbd7445a..2162e260159c28a15a7c360dc835979eda8563d8 100644 (file)
@@ -23,6 +23,7 @@
   # accesskey: optional, input only; accesskey attribute value
   # size: optional, input only; size attribute value
   # 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 @@
 <select name="[% name FILTER html %]"
   [% IF onchange %] onchange="[% onchange FILTER html %]" [% END %]
   [% IF accesskey %] accesskey="[% accesskey FILTER html %]" [% END %]
+  [% IF multiple %] multiple="multiple" size="[% multiple FILTER html %]" [% END %]
 >
   [% IF emptyok %]
     <option value=""></option>