Mercurial > p > roundup > code
diff roundup/cgi/actions.py @ 3466:0ecd0062abfb
fix redirect after instant registration [SF#1381676]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 13 Jan 2006 03:33:29 +0000 |
| parents | 9b8019f28158 |
| children | 6f3b30925975 |
line wrap: on
line diff
--- a/roundup/cgi/actions.py Fri Jan 13 02:55:49 2006 +0000 +++ b/roundup/cgi/actions.py Fri Jan 13 03:33:29 2006 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.49 2005-10-07 04:49:48 richard Exp $ +#$Id: actions.py,v 1.50 2006-01-13 03:33:29 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random, csv @@ -788,8 +788,7 @@ # finish off by logging the user in self.userid = self.nodeid - self.finishRego() - return + return self.finishRego() # generate the one-time-key and store the props for later for propname, proptype in self.db.user.getprops().items():
