diff options
author | bbaetz%student.usyd.edu.au <> | 2002-11-10 11:50:34 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-11-10 11:50:34 +0100 |
commit | 2230afc9fb94b3dc36fab966f7621ca1deea24ab (patch) | |
tree | 81f2ea98bd561b394f95e550a640db02b58de4e6 /template/en/default/reports | |
parent | 8ac7e6f592417ab4592cbfa015042db7582b7b06 (diff) | |
download | bugzilla-2230afc9fb94b3dc36fab966f7621ca1deea24ab.tar.gz bugzilla-2230afc9fb94b3dc36fab966f7621ca1deea24ab.tar.xz |
Bug 176599, Improve performance of duplicates.cgi
original patch iteration by gerv, change to use Bugzilla:Search by me
r=myk, a=justdave
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/duplicates.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/reports/duplicates.html.tmpl b/template/en/default/reports/duplicates.html.tmpl index 531196eb8..bb2a3a10c 100644 --- a/template/en/default/reports/duplicates.html.tmpl +++ b/template/en/default/reports/duplicates.html.tmpl @@ -80,8 +80,8 @@ <td rowspan="4" valign="top"> <select name="product" size="5" multiple="multiple"> [% FOREACH p = products %] - <option name="[% p %]" - [% " selected" IF product == p %]>[% p %]</option> + <option name="[% p FILTER html %]" + [% " selected" IF product == p %]>[% p FILTER html %]</option> [% END %] </select> </td> |