Code

bugfixes to rego/password reset
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 20 Mar 2003 04:02:52 +0000 (04:02 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 20 Mar 2003 04:02:52 +0000 (04:02 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1610 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/cgi/client.py

index a96babfd7e6ccb7af54ad7c4fa2a69d5b1ae18f5..76dc92746b03efd82adba6b9b064765fac47a97d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: client.py,v 1.108 2003-03-19 02:50:40 richard Exp $
+# $Id: client.py,v 1.109 2003-03-20 04:02:52 richard Exp $
 
 __doc__ = """
 WWW request handler (also used in the stand-alone server).
@@ -787,7 +787,7 @@ please visit the following URL:
                 return 0
             except smtplib.SMTPException, msg:
                 self.error_message.append("Error: couldn't send email: %s"%msg)
-            return 0
+                return 0
         return 1
 
     def registerPermission(self, props):
@@ -855,8 +855,8 @@ please visit the following URL:
         message = _('You are now registered, welcome!')
 
         # redirect to the user's page
-        raise Redirect, '%suser%s?@ok_message=%s&@template=%s'%(self.base,
-            self.userid, urllib.quote(message), urllib.quote(self.template))
+        raise Redirect, '%suser%s?@ok_message=%s'%(self.base,
+            self.userid, urllib.quote(message))
 
     def passResetAction(self):
         ''' Handle password reset requests.