Fix for bug 133425: adding missing FILTERs in the template

Patch by Andreas Franke r = Gerv x2
parent 90158106
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
<td> <td>
<select name="component"> <select name="component">
[% FOREACH x = component_ %] [% FOREACH x = component_ %]
<option value="[% x %]" <option value="[% x FILTER html %]"
[% " selected" IF x == bug.component %]>[% x FILTER html %] [% " selected" IF x == bug.component %]>[% x FILTER html %]
</option> </option>
[% END %] [% END %]
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
[% IF bug.cc %] [% IF bug.cc %]
<select name="cc" multiple size="5"> <select name="cc" multiple size="5">
[% FOREACH c = bug.cc %] [% FOREACH c = bug.cc %]
<option value="[% c %]">[% c %]</option> <option value="[% c FILTER html %]">[% c FILTER html %]</option>
[% END %] [% END %]
</select> </select>
<br> <br>
...@@ -383,7 +383,7 @@ ...@@ -383,7 +383,7 @@
[% IF bug.resolution %] [% IF bug.resolution %]
<input type="radio" name="knob" value="clearresolution"> <input type="radio" name="knob" value="clearresolution">
Clear the resolution (remove the current resolution of Clear the resolution (remove the current resolution of
<b>[% bug.resolution %]</b>)<br> <b>[% bug.resolution FILTER html %]</b>)<br>
[% knum = knum + 1 %] [% knum = knum + 1 %]
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment