[FIX] never let me commit in saas-3 again

bzr revid: fme@openerp.com-20140203124516-l8wwu9vdyo2nu2s0
This commit is contained in:
Fabien Meghazi 2014-02-03 13:45:16 +01:00
parent 4bf0284d4b
commit 967c9db196
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ class AuthSignup(openerp.addons.web.controllers.main.Home):
qcontext.update(config)
if 'error' in qcontext or mode not in ('reset', 'signup') or (not token and not config[mode]):
response = super(Home, self).web_login(*args, **kw)
response = super(AuthSignup, self).web_login(*args, **kw)
if isinstance(response, LazyResponse):
response.params['values'].update(config)
return response
@ -86,7 +86,7 @@ class AuthSignup(openerp.addons.web.controllers.main.Home):
request.cr.commit()
except SignupError, e:
qcontext['error'] = exception_to_unicode(e)
return super(Home, self).web_login(*args, **kw)
return super(AuthSignup, self).web_login(*args, **kw)
return response