On Tue, Nov 22, 2011 at 3:50 PM, Anthony <[email protected]> wrote: > On Tuesday, November 22, 2011 3:00:46 PM UTC-5, Matt wrote: >> >> Aren't passwords always hashed when entered in the database? > > Not necessarily. You have to have the CRYPT() validator on the password > field for hashing. It is there by default, but is not required and could be > removed. > Anthony Well, temporarily I have removed the password validation line: password = table_user[passfield].validate(password)[0]
and everything works, but this is not ideal, as I would prefer to not have project-specific changes to gluon. Is there another solution for this? Matt

