[CMF-checkins] CVS: CMF/CMFDefault/skins/zpt_generic - search_form.pt:1.9

Yvo Schubbe y.2004_ at wcm-solutions.de
Sun Feb 1 09:34:35 EST 2004


Update of /cvs-repository/CMF/CMFDefault/skins/zpt_generic
In directory cvs.zope.org:/tmp/cvs-serv27922/CMFDefault/skins/zpt_generic

Modified Files:
	search_form.pt 
Log Message:
fixed a DateTime related issue by adding one second to epoch
(modified the earlier fix in search_form.pt and synced search_form.dtml / doFormSearch.py)


=== CMF/CMFDefault/skins/zpt_generic/search_form.pt 1.8 => 1.9 ===
--- CMF/CMFDefault/skins/zpt_generic/search_form.pt:1.8	Tue Dec 23 16:47:26 2003
+++ CMF/CMFDefault/skins/zpt_generic/search_form.pt	Sun Feb  1 09:34:33 2004
@@ -15,7 +15,6 @@
 
 <table class="FormLayout">
 
-
  <tr tal:condition="python: here.portal_membership.checkPermission('Review portal content', here)">
   <th i18n:translate="">Review Status</th>
   <td>
@@ -94,7 +93,7 @@
                   lastMth python:(today-31).Date();
                  ">
    <select name="created:date">
-    <option value="1970/01/02"
+    <option value="1970/01/01 00:00:01 GMT"
             i18n:translate="">Ever</option>
     <option value=""
             tal:condition="python:not(here.portal_membership.isAnonymousUser())"
@@ -166,4 +165,3 @@
 </div>
 </body>
 </html>
-




More information about the CMF-checkins mailing list