|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
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 $ |
19 | 19 |
|
20 | 20 | import os, re, StringIO, urllib, cgi, errno |
21 | 21 |
|
@@ -507,7 +507,7 @@ def render(self, filterspec={}, filter=[], columns=[], sort=[], group=[], |
507 | 507 | # display the filter section |
508 | 508 | if (hasattr(self.client, 'FILTER_POSITION') and |
509 | 509 | self.client.FILTER_POSITION in ('top and bottom', 'top')): |
510 | | - w('<form>\n') |
| 510 | + w('<form action="index">\n') |
511 | 511 | self.filter_section(filter_template, filter, columns, group, |
512 | 512 | all_filters, all_columns, show_display_form, show_customization) |
513 | 513 | w('</form>\n') |
@@ -587,7 +587,7 @@ def render(self, filterspec={}, filter=[], columns=[], sort=[], group=[], |
587 | 587 | # display the filter section |
588 | 588 | if (hasattr(self.client, 'FILTER_POSITION') and |
589 | 589 | self.client.FILTER_POSITION in ('top and bottom', 'bottom')): |
590 | | - w('<form>\n') |
| 590 | + w('<form action="index">\n') |
591 | 591 | self.filter_section(filter_template, filter, columns, group, |
592 | 592 | all_filters, all_columns, show_display_form, show_customization) |
593 | 593 | w('</form>\n') |
@@ -827,6 +827,9 @@ def render(self, form): |
827 | 827 |
|
828 | 828 | # |
829 | 829 | # $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 | +# |
830 | 833 | # Revision 1.33 2001/10/23 01:00:18 richard |
831 | 834 | # Re-enabled login and registration access after lopping them off via |
832 | 835 | # disabling access for anonymous users. |
|
0 commit comments