From: richard Date: Thu, 15 Nov 2001 10:26:01 +0000 (+0000) Subject: . missing "return" in filter_section (thanks Roch'e Compaan) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1afa198ef397d8b865ba999d50f772231b8da4c4;p=roundup.git . missing "return" in filter_section (thanks Roch'e Compaan) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@403 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 928c7e9..ca8f0fc 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -43,6 +43,7 @@ Fixed: . errors in nosy reaction will be propogated now (were effectively being squashed) . re-open the database as the author in mail handling + . missing "return" in filter_section (thanks Roch'e Compaan) 2001-10-23 - 0.3.0 pre 3 diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index c3ab8a1..7ab976b 100644 --- a/roundup/htmltemplate.py +++ b/roundup/htmltemplate.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: htmltemplate.py,v 1.40 2001-11-03 01:56:51 richard Exp $ +# $Id: htmltemplate.py,v 1.41 2001-11-15 10:26:01 richard Exp $ import os, re, StringIO, urllib, cgi, errno @@ -660,6 +660,7 @@ class IndexTemplate(TemplateFunctions): if not show_customization: w('\n') + return w(' ') for name in names: @@ -849,6 +850,10 @@ class NewItemTemplate(TemplateFunctions): # # $Log: not supported by cvs2svn $ +# Revision 1.40 2001/11/03 01:56:51 richard +# More HTML compliance fixes. This will probably fix the Netscape problem +# too. +# # Revision 1.39 2001/11/03 01:43:47 richard # Ahah! Fixed the lynx problem - there was a hidden input field misplaced. #