From b6cd0ea82047573509c84b18b1ef5cade89a729b Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Thu, 1 Aug 2013 18:27:04 +0200 Subject: [PATCH] [FIX]auth_crypt: was storing password when passsing by res.users create, like auth_signup bzr revid: dle@openerp.com-20130801162704-fbvghil7yir8zm8c --- addons/auth_crypt/auth_crypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/auth_crypt/auth_crypt.py b/addons/auth_crypt/auth_crypt.py index 08dd156a603..4651d27fe7d 100644 --- a/addons/auth_crypt/auth_crypt.py +++ b/addons/auth_crypt/auth_crypt.py @@ -120,7 +120,7 @@ class res_users(osv.osv): def set_pw(self, cr, uid, id, name, value, args, context): if value: encrypted = md5crypt(value, gen_salt()) - cr.execute('update res_users set password_crypt=%s where id=%s', (encrypted, int(id))) + cr.execute("update res_users set password='', password_crypt=%s where id=%s", (encrypted, id)) del value def get_pw( self, cr, uid, ids, name, args, context ):