#18669567 : fixed an error occurred when login with openID

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7270 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2010-02-03 07:33:13 +00:00
parent 8c03ae8cca
commit 8f5a97a150

View file

@ -149,7 +149,8 @@ class Auth_OpenID_XEStore extends Auth_OpenID_OpenIDStore {
function getAssociation($server_url, $handle = null)
{
$assoc = $this->_get_assoc($server_url, $handle);
return $assoc;
$assoc_o = new Auth_OpenID_Association($assoc->handle, $assoc->secret, $assoc->issued, $assoc->lifetime, $assoc->assoc_type);
return $assoc_o;
}