Commit 947c6e6e authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 303527: The bug entry page does not use localised terms for statuses - Patch…

Bug 303527: The bug entry page does not use localised terms for statuses - Patch by Marc Schumann <wurblzap@gmail.com> r=myk a=justdave
parent 8e6ee8cf
...@@ -456,9 +456,13 @@ function set_assign_to() { ...@@ -456,9 +456,13 @@ function set_assign_to() {
<select name="[% sel.name %]"> <select name="[% sel.name %]">
[%- FOREACH x = ${sel.name} %] [%- FOREACH x = ${sel.name} %]
<option value="[% x FILTER html %]" <option value="[% x FILTER html %]"
[% " selected=\"selected\"" IF x == default.${sel.name} %]>[% x FILTER html -%] [% " selected=\"selected\"" IF x == default.${sel.name} %]>
</option> [% IF sel.name == "bug_status" %]
[%- END %] [% status_descs.$x FILTER html %]
[% ELSE %]
[% x FILTER html %]
[% END %]</option>
[% END %]
</select> </select>
</td> </td>
[% END %] [% END %]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment