summaryrefslogtreecommitdiffstats
path: root/template/default/attachment/edit.atml
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-04-07 13:13:31 +0200
committerbbaetz%student.usyd.edu.au <>2002-04-07 13:13:31 +0200
commit91341bcfc6d9e2f06b3abf3f73e05c2c60fbd30e (patch)
treeae48a5143c8a977e8a15bc2ad9faf1defd38f70b /template/default/attachment/edit.atml
parentae8a18de80c43febc782c4f398e75fdf89281601 (diff)
downloadbugzilla-91341bcfc6d9e2f06b3abf3f73e05c2c60fbd30e.tar.gz
bugzilla-91341bcfc6d9e2f06b3abf3f73e05c2c60fbd30e.tar.xz
Bug 133423 - Audit templates for FILTER usage
r=gerv, justdave
Diffstat (limited to 'template/default/attachment/edit.atml')
-rwxr-xr-xtemplate/default/attachment/edit.atml6
1 files changed, 3 insertions, 3 deletions
diff --git a/template/default/attachment/edit.atml b/template/default/attachment/edit.atml
index 599aff00a..1d06bfb6f 100755
--- a/template/default/attachment/edit.atml
+++ b/template/default/attachment/edit.atml
@@ -153,10 +153,10 @@
<td width="25%">
<small>
<b>Description:</b><br>
- <textarea rows="3" cols="25" name="description" wrap="soft">[% description %]</textarea><br>
+ <textarea rows="3" cols="25" name="description" wrap="soft">[% description FILTER html %]</textarea><br>
<b>MIME Type:</b><br>
- <input type="text" size="20" name="contenttypeentry" value="[% contenttype %]"><br>
+ <input type="text" size="20" name="contenttypeentry" value="[% contenttype FILTER html %]"><br>
<b>Flags:</b><br>
<input type="checkbox" name="ispatch" value="1"[% " checked" IF ispatch %]>patch
@@ -165,7 +165,7 @@
[% IF statusdefs.size %]
<b>Status:</b><br>
[% FOREACH def = statusdefs %]
- <input type="checkbox" name="status" value="[% def.id %]"[% " checked" IF statuses.${def.id} %]>[% def.name %]<br>
+ <input type="checkbox" name="status" value="[% def.id %]"[% " checked" IF statuses.${def.id} %]>[% def.name FILTER html %]<br>
[% END %]
[% END %]