summaryrefslogtreecommitdiffstats
path: root/template/en/default/search/form.html.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/search/form.html.tmpl')
-rw-r--r--template/en/default/search/form.html.tmpl8
1 files changed, 7 insertions, 1 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl
index 963d474d9..cc33c4f96 100644
--- a/template/en/default/search/form.html.tmpl
+++ b/template/en/default/search/form.html.tmpl
@@ -595,7 +595,13 @@ function doOnSelectProduct(selectmode) {
[% FOREACH name = ${sel.name} %]
<option value="[% name FILTER html %]"
[% " selected" IF lsearch(default.${sel.name}, name) != -1 %]>
- [% name FILTER html %]</option>
+ [% IF sel.name == "bug_status" %]
+ [% status_descs.${name} FILTER html %]</option>
+ [% ELSIF sel.name == "resolution" %]
+ [% resolution_descs.${name} FILTER html %]</option>
+ [% ELSE %]
+ [% name FILTER html %]</option>
+ [% END %]
[% END %]
</select>
</label>