Code

fixed bug in args to new DateHTMLProperty in the local() method (sf bug 901444)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 23 Feb 2004 05:40:36 +0000 (05:40 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 23 Feb 2004 05:40:36 +0000 (05:40 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2105 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi/templating.py

index aebccff66c86bb7c024dd0b08527114f969fa0fc..af416111d20d7cf4e8626193b97895661d034453 100644 (file)
@@ -73,8 +73,11 @@ Cleanup:
 
 2004-??-?? 0.6.6
 Fixed:
-- don't insert spaces into designators, it just confuses users (sf bug 898087)
+- don't insert spaces into designators, it just confuses users (sf bug
+  898087)
 - Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
+- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
+  901444)
 
 
 2004-02-16 0.6.5
index 1a807f9416279121a083ac406424767d25d201d3..3fa5b0154ba9280c3adb11efbbfbecea8855e7c6 100644 (file)
@@ -1280,8 +1280,8 @@ class DateHTMLProperty(HTMLProperty):
         '''
         self.view_check()
 
-        return DateHTMLProperty(self._client, self._nodeid, self._prop,
-            self._formname, self._value.local(offset))
+        return DateHTMLProperty(self._client, self._classname, self._nodeid,
+            self._prop, self._formname, self._value.local(offset))
 
 class IntervalHTMLProperty(HTMLProperty):
     def plain(self):