[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ - Collector #1812: Fixed key error in ZSQL ZMI/Test

Andreas Jung andreas at andreas-jung.com
Sat Jul 2 05:07:15 EDT 2005


Log message for revision 30981:
  
        - Collector #1812: Fixed key error in ZSQL ZMI/Test
  
  

Changed:
  U   Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
  U   Zope/branches/Zope-2_8-branch/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml

-=-
Modified: Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
===================================================================
--- Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2005-07-02 09:06:46 UTC (rev 30980)
+++ Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2005-07-02 09:07:15 UTC (rev 30981)
@@ -36,6 +36,8 @@
 
     Bugs Fixed
 
+      - Collector #1812: Fixed key error in ZSQL ZMI/Test
+
       - Fixed CMFBTreeFolder for CMF 1.5+
 
       - WebDAV COPY and MOVE did not call '_notifyOfCopyTo' and '_postCopy'

Modified: Zope/branches/Zope-2_8-branch/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml	2005-07-02 09:06:46 UTC (rev 30980)
+++ Zope/branches/Zope-2_8-branch/lib/python/Shared/DC/ZRDB/dtml/customDefaultReport.dtml	2005-07-02 09:07:15 UTC (rev 30981)
@@ -3,7 +3,7 @@
 
       <dtml-if previous-sequence>
 
-        <a href="&dtml-URL;&dtml-sequence-query;query_start=&dtml-previous-sequence-start-number;">
+        <a href="&dtml-URL;?query_start=&dtml-previous-sequence-start-number;&query=<dtml-var query url_quote missing=''>">
         (Previous <dtml-var previous-sequence-size> results)
         </a>
 
@@ -22,7 +22,8 @@
       %(else no_table)[</table>%(else)]
 
       <dtml-if next-sequence>
-        <a href="&dtml-URL;&dtml-sequence-query;query_start=&dtml-next-sequence-start-number;">
+         <a href="&dtml-URL;?query_start=&dtml-next-sequence-start-number;&query=<dtml-var query url_quote missing=''>">
+
          (Next <dtml-var next-sequence-size> results)
          </a>
 



More information about the Zope-Checkins mailing list