[Python-checkins] r69781 - tracker/instances/python-dev/html/issue.search.html

martin.v.loewis python-checkins at python.org
Thu Feb 19 21:05:48 CET 2009


Author: martin.v.loewis
Date: Thu Feb 19 21:05:48 2009
New Revision: 69781

Log:
Issue #240: Fix searching for "not closed".


Modified:
   tracker/instances/python-dev/html/issue.search.html

Modified: tracker/instances/python-dev/html/issue.search.html
==============================================================================
--- tracker/instances/python-dev/html/issue.search.html	(original)
+++ tracker/instances/python-dev/html/issue.search.html	Thu Feb 19 21:05:48 2009
@@ -232,8 +232,8 @@
   <th i18n:translate="">Status:</th>
   <td metal:use-macro="search_select_translated">
     <tal:block metal:fill-slot="extra_options">
-      <option value="-1,1,2" i18n:translate=""
-              tal:attributes="selected python:value == '-1,1,2'">not closed</option>
+      <option value="-1,1,3" i18n:translate=""
+              tal:attributes="selected python:value == '-1,1,3'">not closed</option>
       <option value="-1" i18n:translate=""
               tal:attributes="selected python:value == '-1'">not selected</option>
     </tal:block>


More information about the Python-checkins mailing list