I have this to store persistent data for an authenticated user;
// We're authenticated! Store details.
$identity = $adapter->getResultRowObject();
$authStorage = $auth->getStorage();
$authStorage->write($identity);I would like to add one extra bit of info to the persistent storage. Is there any way i can append this to the stored $identity? -- List: [email protected] Info: http://framework.zend.com/archives Unsubscribe: [email protected]
