]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 303527: The bug entry page does not use localised terms for statuses - Patch...
authorlpsolit%gmail.com <>
Mon, 22 Aug 2005 05:20:17 +0000 (05:20 +0000)
committerlpsolit%gmail.com <>
Mon, 22 Aug 2005 05:20:17 +0000 (05:20 +0000)
template/en/default/bug/create/create.html.tmpl

index 11a29a223977242acbc46dee1c9857cb1f1a1bda..c99af7c3b8eedfa08ee4aca64f10ff657686b06d 100644 (file)
@@ -447,9 +447,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 %]