|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-04-29 08:16 UTC] jon at jellybob dot co dot uk
I don't know if I've just misunderstood the purpose of the option, but when I define the option db_fields for the DB driver it doesn't seem to put them anywhere.
What I thought it should do is allow me to go $auth->getAuthData('uid') to get the uid field from my database.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 10 17:00:01 2025 UTC |
in function setAuth() $session['auth']['data'] = array(); should be replaced by if (!isset($session['auth']['data']) || !is_array($session['auth']['data'])) { $session['auth']['data'] = array(); } Regards, Seb