Skip to content

Commit 75853b3

Browse files
author
Richard Jones
committed
missing "return" in filter_section (thanks Roch'e Compaan)
1 parent d23341e commit 75853b3

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Fixed:
4343
. errors in nosy reaction will be propogated now (were effectively being
4444
squashed)
4545
. re-open the database as the author in mail handling
46+
. missing "return" in filter_section (thanks Roch'e Compaan)
4647

4748

4849
2001-10-23 - 0.3.0 pre 3

roundup/htmltemplate.py

Lines changed: 6 additions & 1 deletion
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.40 2001-11-03 01:56:51 richard Exp $
18+
# $Id: htmltemplate.py,v 1.41 2001-11-15 10:26:01 richard Exp $
1919

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

@@ -660,6 +660,7 @@ def filter_section(self, template, filter, columns, group, all_filters,
660660

661661
if not show_customization:
662662
w('</table>\n')
663+
return
663664

664665
w('<tr class="location-bar"><th>&nbsp;</th>')
665666
for name in names:
@@ -849,6 +850,10 @@ def render(self, form):
849850

850851
#
851852
# $Log: not supported by cvs2svn $
853+
# Revision 1.40 2001/11/03 01:56:51 richard
854+
# More HTML compliance fixes. This will probably fix the Netscape problem
855+
# too.
856+
#
852857
# Revision 1.39 2001/11/03 01:43:47 richard
853858
# Ahah! Fixed the lynx problem - there was a hidden input field misplaced.
854859
#

0 commit comments

Comments
 (0)