diff options
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/userselect.html.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
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> |