summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/textarea.html.tmpl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2009-10-23 23:32:06 +0200
committerlpsolit%gmail.com <>2009-10-23 23:32:06 +0200
commit401fb65f2e6f9031cedf47fb6d951236b5c624d3 (patch)
tree83050744560019f7b6142479cd3246bf00aeb0ec /template/en/default/global/textarea.html.tmpl
parentf30aa492d193a0489fb0480c451f092ec819bbac (diff)
downloadbugzilla-401fb65f2e6f9031cedf47fb6d951236b5c624d3.tar.gz
bugzilla-401fb65f2e6f9031cedf47fb6d951236b5c624d3.tar.xz
Bug 365267: attachment.cgi should not be editable when the user is not logged in - Patch by Frédéric Buclin <LpSolit@gmail.com> r=pyrzak a=LpSolit
Diffstat (limited to 'template/en/default/global/textarea.html.tmpl')
-rw-r--r--template/en/default/global/textarea.html.tmpl2
1 files changed, 2 insertions, 0 deletions
diff --git a/template/en/default/global/textarea.html.tmpl b/template/en/default/global/textarea.html.tmpl
index 006158b45..b762f1c4f 100644
--- a/template/en/default/global/textarea.html.tmpl
+++ b/template/en/default/global/textarea.html.tmpl
@@ -19,6 +19,7 @@
# name: (optional) The "name"-attribute of the textarea.
# accesskey: (optional) The "accesskey"-attribute of the textarea.
# style: (optional) The "style"-attribute of the textarea.
+ # classes: (optional) The "class"-attribute of the textarea.
# wrap: (deprecated; optional) The "wrap"-attribute of the textarea.
# minrows: (required) Number of rows the textarea shall have initially
# and when not having focus.
@@ -36,6 +37,7 @@
[% IF id %] id="[% id FILTER html %]"[% END %]
[% IF accesskey %] accesskey="[% accesskey FILTER html %]"[% END %]
[% IF style %] style="[% style FILTER html %]"[% END %]
+ [% IF classes %]class="[% classes FILTER html %]"[% END %]
[% IF wrap %] wrap="[% wrap FILTER html %]"[% END %]
[% IF defaultrows && user.settings.zoom_textareas.value == 'off' %]
rows="[% defaultrows FILTER html %]"