Browse Source
Merge pull request #1108 from LasLabs/bugfix/9.0/password_security-request_params
[9.0][FIX] password_security: No login success with no params
pull/534/head
Moises Lopez - https://www.vauxoo.com/
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
password_security/__openerp__.py
-
password_security/controllers/main.py
|
|
@ -5,7 +5,7 @@ |
|
|
|
|
|
|
|
'name': 'Password Security', |
|
|
|
"summary": "Allow admin to set password security requirements.", |
|
|
|
'version': '9.0.1.2.2', |
|
|
|
'version': '9.0.1.2.3', |
|
|
|
'author': "LasLabs, Odoo Community Association (OCA)", |
|
|
|
'category': 'Base', |
|
|
|
'depends': [ |
|
|
|
|
|
@ -36,7 +36,7 @@ class PasswordSecurityHome(AuthSignupHome): |
|
|
|
def web_login(self, *args, **kw): |
|
|
|
ensure_db() |
|
|
|
response = super(PasswordSecurityHome, self).web_login(*args, **kw) |
|
|
|
login_success = request.params.get('login_success', True) |
|
|
|
login_success = request.params.get('login_success', False) |
|
|
|
if not request.httprequest.method == 'POST' or not login_success: |
|
|
|
return response |
|
|
|
uid = request.session.authenticate( |
|
|
|