Skip to content

Commit ef6bbfb

Browse files
author
Richard Jones
committed
fixed rego
1 parent 9bb8d62 commit ef6bbfb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2004-??-?? 0.6.6
4+
2004-02-25 0.6.6
55
Fixed:
66
- don't insert spaces into designators, it just confuses users (sf bug
77
898087)
88
- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
99
- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
1010
901444)
11+
- fixed registration (sf bug 903283)
1112

1213

1314
2004-02-16 0.6.5

roundup/cgi/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: client.py,v 1.130.2.9 2004-02-13 01:35:02 richard Exp $
1+
# $Id: client.py,v 1.130.2.10 2004-02-24 21:13:26 richard Exp $
22

33
__doc__ = """
44
WWW request handler (also used in the stand-alone server).
@@ -730,7 +730,7 @@ def registerAction(self):
730730
'''
731731
# parse the props from the form
732732
try:
733-
props = self.parsePropsFromForm()[0][('user', None)]
733+
props = self.parsePropsFromForm(create=True)[0][('user', None)]
734734
except (ValueError, KeyError), message:
735735
self.error_message.append(_('Error: ') + str(message))
736736
return

0 commit comments

Comments
 (0)