diff options
author | justdave%syndicomm.com <> | 2002-04-01 10:04:14 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-04-01 10:04:14 +0200 |
commit | 8d762094667cd2c0c9b4831a2909f069a16e5e9c (patch) | |
tree | 0cde570894c7325713123bcd87034af36a3ae040 /template/default | |
parent | 901581060b6f1b6e7ea46d83223d93cc0d3f93ff (diff) | |
download | bugzilla-8d762094667cd2c0c9b4831a2909f069a16e5e9c.tar.gz bugzilla-8d762094667cd2c0c9b4831a2909f069a16e5e9c.tar.xz |
Fix for bug 133425: adding missing FILTERs in the template
Patch by Andreas Franke
r = Gerv x2
Diffstat (limited to 'template/default')
-rw-r--r-- | template/default/show/show_bug.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/default/show/show_bug.html.tmpl b/template/default/show/show_bug.html.tmpl index fa501a4d1..994bc4ae5 100644 --- a/template/default/show/show_bug.html.tmpl +++ b/template/default/show/show_bug.html.tmpl @@ -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 %] @@ -116,7 +116,7 @@ [% 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> @@ -383,7 +383,7 @@ [% 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 %] |