summaryrefslogtreecommitdiffstats
path: root/template/en/default/global
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-01-10 00:51:48 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2012-01-10 00:51:48 +0100
commite7fb5b6ba75cc488d5fa155593546244334dec23 (patch)
tree347370d0a0321745debae7cfb05c142e248f6f10 /template/en/default/global
parente50fc49676a9dfdc958b17b2c4d0bf3fa72e8b69 (diff)
downloadbugzilla-e7fb5b6ba75cc488d5fa155593546244334dec23.tar.gz
bugzilla-e7fb5b6ba75cc488d5fa155593546244334dec23.tar.xz
Bug 716283: Clickjacking in the attachment "Details" page allows to bypass token checks
r=dkl a=LpSolit
Diffstat (limited to 'template/en/default/global')
-rw-r--r--template/en/default/global/textarea.html.tmpl3
1 files changed, 3 insertions, 0 deletions
diff --git a/template/en/default/global/textarea.html.tmpl b/template/en/default/global/textarea.html.tmpl
index 84aacf2ee..4a493f928 100644
--- a/template/en/default/global/textarea.html.tmpl
+++ b/template/en/default/global/textarea.html.tmpl
@@ -21,6 +21,8 @@
# 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.
+ # disabled: (optional) Disable the textarea.
+ # readonly: (optional) Prevent the textarea from being edited.
# minrows: (required) Number of rows the textarea shall have initially
# and when not having focus.
# maxrows: (optional) Number of rows the textarea shall have if
@@ -42,6 +44,7 @@
[% IF classes %] class="[% classes FILTER html %]"[% END %]
[% IF wrap %] wrap="[% wrap FILTER html %]"[% END %]
[% IF disabled %] disabled="disabled"[% END %]
+ [% IF readonly %] readonly="readonly"[% END %]
[% IF defaultrows && user.settings.zoom_textareas.value == 'off' %]
rows="[% defaultrows FILTER html %]"
[% ELSE %]