summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2005-01-16 23:22:09 +0100
committerjocuri%softhome.net <>2005-01-16 23:22:09 +0100
commitc3274f47d71e1526d9dbe33b158b1e4e8dd272f6 (patch)
tree3d29cfca603706f0e2532ad06b52623a89ee2a19 /template
parenta1d58085aa7e7c2d3e1342b92c4887b0d22926f1 (diff)
downloadbugzilla-c3274f47d71e1526d9dbe33b158b1e4e8dd272f6.tar.gz
bugzilla-c3274f47d71e1526d9dbe33b158b1e4e8dd272f6.tar.xz
Patch for bug 255428: Allow multiple user selection in CC pull downs; patch by John Beranek <john@redux.org.uk>, r=wurblzap, a=myk.
Diffstat (limited to 'template')
-rw-r--r--template/en/default/bug/create/create.html.tmpl1
-rw-r--r--template/en/default/bug/edit.html.tmpl1
-rw-r--r--template/en/default/global/userselect.html.tmpl2
3 files changed, 4 insertions, 0 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl
index e3551627b..dd0d4f13c 100644
--- a/template/en/default/bug/create/create.html.tmpl
+++ b/template/en/default/bug/create/create.html.tmpl
@@ -202,6 +202,7 @@ function set_assign_to() {
value => cc
size => 45
emptyok => 1
+ multiple => 5
%]
</td>
</tr>
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index 0ba3638d8..6b43809d6 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -180,6 +180,7 @@
accesskey => "a"
size => 30
emptyok => 1
+ multiple => 5
%]
</td>
</tr>
diff --git a/template/en/default/global/userselect.html.tmpl b/template/en/default/global/userselect.html.tmpl
index d83a5905b..2162e2601 100644
--- a/template/en/default/global/userselect.html.tmpl
+++ b/template/en/default/global/userselect.html.tmpl
@@ -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>