diff --git a/addons/auth_signup/res_users.py b/addons/auth_signup/res_users.py index 38beb087c7a..a9469e4de0d 100644 --- a/addons/auth_signup/res_users.py +++ b/addons/auth_signup/res_users.py @@ -234,6 +234,7 @@ class res_users(osv.Model): # create a copy of the template user (attached to a specific partner_id if given) values['active'] = True + context = dict(context or {}, no_reset_password=True) return self.copy(cr, uid, template_user_id, values, context=context) def reset_password(self, cr, uid, login, context=None):