I want to add the auth module in my application but when he's trying to access to the database, he doesn't use the right fields. This is the error page that I get with the request :
Database_Exception [ 1054 ]: Unknown column 'username' in 'where clause' [ SELECT
user.idASid,user.user.loginASlogin,user.passwordASpassword,user.nomASnom,user.prenomASprenom,user.telephoneAStelephone,user.inscriptionASinscription,user.activeASactive,user.adminASadmin,user.rattachementASrattachement,user.organismeASorganismeFROMutilisateurASuserWHEREusername= 'l.rousseaux' LIMIT 1 ]
So in the where clause, he uses username and in my database, I use login. So my question is, where can I change this parameter for him to check the right field ?
Thanks in advance !