Bug 303527: The bug entry page does not use localised terms for statuses - Patch by Marc Schumann <wurblzap@gmail.com> r=myk a=justdave

This commit is contained in:
lpsolit%gmail.com 2005-08-21 22:18:01 +00:00
parent ce0ae1eba3
commit ba87dc7b04

View File

@ -456,9 +456,13 @@ function set_assign_to() {
<select name="[% sel.name %]">
[%- FOREACH x = ${sel.name} %]
<option value="[% x FILTER html %]"
[% " selected=\"selected\"" IF x == default.${sel.name} %]>[% x FILTER html -%]
</option>
[%- END %]
[% " selected=\"selected\"" IF x == default.${sel.name} %]>
[% IF sel.name == "bug_status" %]
[% status_descs.$x FILTER html %]
[% ELSE %]
[% x FILTER html %]
[% END %]</option>
[% END %]
</select>
</td>
[% END %]