From a5ca9cdc8bce14cf5e6a6535915c5fe9f4aced06 Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 10 Sep 2010 06:31:30 +0000 Subject: [PATCH] fixed registration, issue2550665 (thanks Timo Paulssen) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4522 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + doc/acknowledgements.txt | 1 + roundup/cgi/actions.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index fc38e5e..d0164b1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -28,6 +28,7 @@ Fixed: see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5356 - improve handling of '>' when URLs are converted to links, issue2550664 (thanks Ezio Melotti) +- fixed registration, issue2550665 (thanks Timo Paulssen) 2010-07-12 1.4.15 diff --git a/doc/acknowledgements.txt b/doc/acknowledgements.txt index 34ab5d3..b3378e0 100644 --- a/doc/acknowledgements.txt +++ b/doc/acknowledgements.txt @@ -95,6 +95,7 @@ Patrick Ohly, Luke Opperman, Eddie Parker, Will Partain, +Timo Paulssen, Benjamin Pollack, Peter Pöml, Ewout Prangsma, diff --git a/roundup/cgi/actions.py b/roundup/cgi/actions.py index e3de0de..40bbfda 100755 --- a/roundup/cgi/actions.py +++ b/roundup/cgi/actions.py @@ -798,7 +798,7 @@ class RegoCommon(Action): # nice message message = self._('You are now registered, welcome!') url = '%suser%s?@ok_message=%s'%(self.base, self.userid, - urllib._quote(message)) + urllib_.quote(message)) # redirect to the user's page (but not 302, as some email clients seem # to want to reload the page, or something) -- 2.30.2