application uses codeigniter and tank_auth with it. I need to add some more data to add ci_sessions table. I could not find where a data is inserted to ci_sessions. Where it is, in which folder or controller or library?
application uses codeigniter and tank_auth with it. I need to add some more data
Share
I found it: it is in system/libraries/Session.php
but altering library tank_auth.php sounded better than Session.php
for similar questions: I changed this
to this:
by adding
$user->languagewith addition to thelanguagecolumn touserstable in database.the data is still stored in
ci_sessionstable but inuser_datacolumn.