Version 1.79.2 (2010-06-08 22:45:26) was browsing through the code implementing some custom authentication and noticed this on line 1809 of tools.py:
user.update_record(password=form.vars.new_password, registration_key='', reset_password_key='') where a few lines above you see this: passfield = self.settings.password_field so I assume line 1809 should actually be: user.update_record(passfield=form.vars.new_password, registration_key='', reset_password_key='') -Nick Franceschina

