Browse Source
Merge pull request #1109 from LasLabs/bugfix/10.0/password_security-request_params
[10.0][FIX] password_security: No login success with no params
pull/1139/head
Pedro M. Baeza
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/__manifest__.py
-
password_security/controllers/main.py
|
|
@ -5,7 +5,7 @@ |
|
|
|
|
|
|
|
'name': 'Password Security', |
|
|
|
"summary": "Allow admin to set password security requirements.", |
|
|
|
'version': '10.0.1.1.2', |
|
|
|
'version': '10.0.1.1.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( |
|
|
|