Skip to content

Commit 7f479cf

Browse files
author
Richard Jones
committed
Removed the "infinite authentication loop", thanks Roch'e
1 parent d8fdd05 commit 7f479cf

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

roundup/htmltemplate.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: htmltemplate.py,v 1.34 2001-10-23 22:56:36 richard Exp $
18+
# $Id: htmltemplate.py,v 1.35 2001-10-24 00:04:41 richard Exp $
1919

2020
import os, re, StringIO, urllib, cgi, errno
2121

@@ -507,7 +507,7 @@ def render(self, filterspec={}, filter=[], columns=[], sort=[], group=[],
507507
# display the filter section
508508
if (hasattr(self.client, 'FILTER_POSITION') and
509509
self.client.FILTER_POSITION in ('top and bottom', 'top')):
510-
w('<form>\n')
510+
w('<form action="index">\n')
511511
self.filter_section(filter_template, filter, columns, group,
512512
all_filters, all_columns, show_display_form, show_customization)
513513
w('</form>\n')
@@ -587,7 +587,7 @@ def render(self, filterspec={}, filter=[], columns=[], sort=[], group=[],
587587
# display the filter section
588588
if (hasattr(self.client, 'FILTER_POSITION') and
589589
self.client.FILTER_POSITION in ('top and bottom', 'bottom')):
590-
w('<form>\n')
590+
w('<form action="index">\n')
591591
self.filter_section(filter_template, filter, columns, group,
592592
all_filters, all_columns, show_display_form, show_customization)
593593
w('</form>\n')
@@ -827,6 +827,9 @@ def render(self, form):
827827

828828
#
829829
# $Log: not supported by cvs2svn $
830+
# Revision 1.34 2001/10/23 22:56:36 richard
831+
# Bugfix in filter "widget" placement, thanks Roch'e
832+
#
830833
# Revision 1.33 2001/10/23 01:00:18 richard
831834
# Re-enabled login and registration access after lopping them off via
832835
# disabling access for anonymous users.

0 commit comments

Comments
 (0)