On Jun 20, 5:52 pm, NickFranceschina <[email protected]> wrote: > 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
The auth table is created with a name for the password field, as set by settings.password_field > > so I assume line 1809 should actually be: > > user.update_record(passfield=form.vars.new_password, > registration_key='', reset_password_key='') You are absolutely correct - while this bug will not show up if the password field is left at its default of 'password', this will fail in any other circumstance. I believe you are correct - and your correction seems proper. Massimo - can you review, and make this correction? - Yarko > > -Nick Franceschina

