Mercurial > p > roundup > code
changeset 2041:2add75e296d2 maint-0.6
fixed rego
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 24 Feb 2004 21:13:26 +0000 |
| parents | 0bbe74ce51d0 |
| children | 6e708cf528e1 |
| files | CHANGES.txt roundup/cgi/client.py |
| diffstat | 2 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Mon Feb 23 05:47:12 2004 +0000 +++ b/CHANGES.txt Tue Feb 24 21:13:26 2004 +0000 @@ -1,13 +1,14 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2004-??-?? 0.6.6 +2004-02-25 0.6.6 Fixed: - 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) +- fixed registration (sf bug 903283) 2004-02-16 0.6.5
--- a/roundup/cgi/client.py Mon Feb 23 05:47:12 2004 +0000 +++ b/roundup/cgi/client.py Tue Feb 24 21:13:26 2004 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.130.2.9 2004-02-13 01:35:02 richard Exp $ +# $Id: client.py,v 1.130.2.10 2004-02-24 21:13:26 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -730,7 +730,7 @@ ''' # parse the props from the form try: - props = self.parsePropsFromForm()[0][('user', None)] + props = self.parsePropsFromForm(create=True)[0][('user', None)] except (ValueError, KeyError), message: self.error_message.append(_('Error: ') + str(message)) return
