Code

. missing "return" in filter_section (thanks Roch'e Compaan)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 15 Nov 2001 10:26:01 +0000 (10:26 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 15 Nov 2001 10:26:01 +0000 (10:26 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@403 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/htmltemplate.py

index 928c7e990285249e0af73d5aeeb5df3f8277392b..ca8f0fc8029318e49860bd7e797ffea67536a996 100644 (file)
@@ -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
index c3ab8a18b3f614306df28ac4c97795d813a5ade4..7ab976bdaad8de1207c325da862bc14351e09732 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.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('</table>\n')
+            return
 
         w('<tr class="location-bar"><th>&nbsp;</th>')
         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.
 #