]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 133425: adding missing FILTERs in the template
authorjustdave%syndicomm.com <>
Mon, 1 Apr 2002 08:04:14 +0000 (08:04 +0000)
committerjustdave%syndicomm.com <>
Mon, 1 Apr 2002 08:04:14 +0000 (08:04 +0000)
Patch by Andreas Franke
r = Gerv x2

template/default/show/show_bug.html.tmpl

index fa501a4d1b16c47839f3772092bbe321204e13c9..994bc4ae5a30445142e92c93740ca4fab4524794 100644 (file)
@@ -95,7 +95,7 @@
       <td>
         <select name="component">
           [% FOREACH x = component_ %]
-            <option value="[% x %]"
+            <option value="[% x FILTER html %]"
               [% " selected" IF x == bug.component %]>[% x FILTER html %]
             </option>
           [% END %]
       [% IF bug.cc %]
         <select name="cc" multiple size="5">
         [% FOREACH c = bug.cc %]
-          <option value="[% c %]">[% c %]</option>
+          <option value="[% c FILTER html %]">[% c FILTER html %]</option>
         [% END %]
         </select>
         <br>
       [% IF bug.resolution %]
         <input type="radio" name="knob" value="clearresolution">
         Clear the resolution (remove the current resolution of
-        <b>[% bug.resolution %]</b>)<br>      
+        <b>[% bug.resolution FILTER html %]</b>)<br>      
         [% knum = knum + 1 %]
       [% END %]