Code

Removed the "infinite authentication loop", thanks Roch'e
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 24 Oct 2001 00:04:41 +0000 (00:04 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 24 Oct 2001 00:04:41 +0000 (00:04 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@338 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/htmltemplate.py

index d028393073e35b41edd48b0d41259215f00eb26f..5610fe1ed1fc6884dddad9c0fe1c8b01fc0621d1 100644 (file)
@@ -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 @@ class IndexTemplate(TemplateFunctions):
         # 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 @@ class IndexTemplate(TemplateFunctions):
         # 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 @@ class NewItemTemplate(TemplateFunctions):
 
 #
 # $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.