]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 290972: In the "Find a Specific Bug" page, the status of the bug being searched...
authorlpsolit%gmail.com <>
Sat, 7 May 2005 20:26:14 +0000 (20:26 +0000)
committerlpsolit%gmail.com <>
Sat, 7 May 2005 20:26:14 +0000 (20:26 +0000)
template/en/default/filterexceptions.pl
template/en/default/search/search-specific.html.tmpl

index c669b2e151a1ac796b7713d4592186ab960b5cd7..39de4fcacbd810a1d3b4d627c42d7bfa85a1951e 100644 (file)
@@ -87,7 +87,7 @@
 ],
 
 'search/search-specific.html.tmpl' => [
-  's',
+  'status.name',
 ],
 
 'search/tabs.html.tmpl' => [
index 8b351bc364aa10f7e56d0ca272e44ef0fdcc1667..8edda69ee2db6dbf27e53e400f5f82192afe57a1 100644 (file)
@@ -59,10 +59,13 @@ for "crash secure SSL flash".
     </td>
     <td>
       <select name="bug_status" id="bug_status">
-        [% FOREACH s = ['open', 'closed', 'all'] %]
-            <option value="__[% s %]__" 
-                  [% " selected" IF default.bug_status.0 == "__${s}__" %]>
-            [% s %]
+        [% statuses = [ { name = 'open', label = "Open" },
+                        { name = 'closed', label = "Closed" },
+                        { name = 'all', label = "All" } ] %]
+        [% FOREACH status = statuses %]
+            <option value="__[% status.name %]__" 
+                  [% " selected" IF default.bug_status.0 == "__${status.name}__" %]>
+            [% status.label FILTER html %]
           </option>
         [% END %]
       </select>