diff roundup/htmltemplate.py @ 327:ee8882029150

Removed the "infinite authentication loop", thanks Roch'e
author Richard Jones <richard@users.sourceforge.net>
date Wed, 24 Oct 2001 00:04:41 +0000
parents 61c42790c3f1
children 1fe356fc3d3e
line wrap: on
line diff
--- a/roundup/htmltemplate.py	Wed Oct 24 00:01:42 2001 +0000
+++ b/roundup/htmltemplate.py	Wed Oct 24 00:04:41 2001 +0000
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: htmltemplate.py,v 1.34 2001-10-23 22:56:36 richard Exp $
+# $Id: htmltemplate.py,v 1.35 2001-10-24 00:04:41 richard Exp $
 
 import os, re, StringIO, urllib, cgi, errno
 
@@ -507,7 +507,7 @@
         # display the filter section
         if (hasattr(self.client, 'FILTER_POSITION') and
                 self.client.FILTER_POSITION in ('top and bottom', 'top')):
-            w('<form>\n')
+            w('<form action="index">\n')
             self.filter_section(filter_template, filter, columns, group,
                 all_filters, all_columns, show_display_form, show_customization)
             w('</form>\n')
@@ -587,7 +587,7 @@
         # display the filter section
         if (hasattr(self.client, 'FILTER_POSITION') and
                 self.client.FILTER_POSITION in ('top and bottom', 'bottom')):
-            w('<form>\n')
+            w('<form action="index">\n')
             self.filter_section(filter_template, filter, columns, group,
                 all_filters, all_columns, show_display_form, show_customization)
             w('</form>\n')
@@ -827,6 +827,9 @@
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.34  2001/10/23 22:56:36  richard
+# Bugfix in filter "widget" placement, thanks Roch'e
+#
 # Revision 1.33  2001/10/23 01:00:18  richard
 # Re-enabled login and registration access after lopping them off via
 # disabling access for anonymous users.

Roundup Issue Tracker: http://roundup-tracker.org/