From c44305053040184b77c87ee5f0a9964115e45f4c Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 23 Feb 2004 05:40:36 +0000 Subject: [PATCH] fixed bug in args to new DateHTMLProperty in the local() method (sf bug 901444) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2105 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 5 ++++- roundup/cgi/templating.py | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index aebccff..af41611 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/roundup/cgi/templating.py b/roundup/cgi/templating.py index 1a807f9..3fa5b01 100644 --- a/roundup/cgi/templating.py +++ b/roundup/cgi/templating.py @@ -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): -- 2.30.2