summaryrefslogtreecommitdiffstats
path: root/template/en/default/global
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-12-28 20:55:54 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-12-28 20:55:54 +0100
commit5a15633a1179f960e1726eebf7f38c7ee2f2b4f8 (patch)
tree814ecaa9e2d4eeea93e416bb4f265ba2e24224ba /template/en/default/global
parent3b55436dd3711772ff632eaa805b6c19e588b791 (diff)
downloadbugzilla-5a15633a1179f960e1726eebf7f38c7ee2f2b4f8.tar.gz
bugzilla-5a15633a1179f960e1726eebf7f38c7ee2f2b4f8.tar.xz
Bug 952795: Remove all style="..." attributes from HTML elements
r/a=justdave
Diffstat (limited to 'template/en/default/global')
-rw-r--r--template/en/default/global/textarea.html.tmpl2
1 files changed, 0 insertions, 2 deletions
diff --git a/template/en/default/global/textarea.html.tmpl b/template/en/default/global/textarea.html.tmpl
index 216f2ddbf..bc5fd6311 100644
--- a/template/en/default/global/textarea.html.tmpl
+++ b/template/en/default/global/textarea.html.tmpl
@@ -11,7 +11,6 @@
# id: (optional) The "id"-attribute of the textarea.
# 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.
# disabled: (optional) Disable the textarea.
@@ -33,7 +32,6 @@
<textarea [% IF name %]name="[% name FILTER html %]"[% END %]
[% 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 disabled %] disabled="disabled"[% END %]