Hi Isaac, I'm was having same problem but after I've applied your patch, it seems that all is working fine now.
I will post here in case I will discover some additional issues thank you cheers -- You received this bug notification because you are a member of OpenERP Indian Team, which is subscribed to OpenERP Addons. https://bugs.launchpad.net/bugs/1162914 Title: auth_signup: Password reset by email stopped working Status in OpenERP Addons (modules): Confirmed Bug description: Steps to reproduce: 1. Go to user profile 2. Click on button to reset password 3. Go to email and click on link to reset password Expected: Form with fields to insert new password Observed: normal login form, with pre-filled and read-only username Possible fix: I've looked at the code, and it seems it's re-setting the form type as "default" even if it's a reset request. I've commented that line and it seems to work fine now. Diff: === modified file 'auth_signup/static/src/js/auth_signup.js' --- auth_signup/static/src/js/auth_signup.js 2013-02-28 16:44:17 +0000 +++ auth_signup/static/src/js/auth_signup.js 2013-04-01 17:33:15 +0000 @@ -57,7 +57,7 @@ self.rpc("/auth_signup/get_config", {dbname: dbname}).done(function(result) { self.signup_enabled = result.signup; self.reset_password_enabled = result.reset_password; - self.set('login_mode', 'default'); + // self.set('login_mode', 'default'); }); } else { // TODO: support multiple database mode To manage notifications about this bug go to: https://bugs.launchpad.net/openobject-addons/+bug/1162914/+subscriptions _______________________________________________ Mailing list: https://launchpad.net/~openerp-india Post to : [email protected] Unsubscribe : https://launchpad.net/~openerp-india More help : https://help.launchpad.net/ListHelp

