diff options
Diffstat (limited to 'plugins/openid/lib/Auth')
-rw-r--r-- | plugins/openid/lib/Auth/OpenID/SQLStore.php | 2 | ||||
-rw-r--r-- | plugins/openid/lib/Auth/OpenID/Server.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/openid/lib/Auth/OpenID/SQLStore.php b/plugins/openid/lib/Auth/OpenID/SQLStore.php index 9069771e..b2a953d6 100644 --- a/plugins/openid/lib/Auth/OpenID/SQLStore.php +++ b/plugins/openid/lib/Auth/OpenID/SQLStore.php @@ -465,7 +465,7 @@ class Auth_OpenID_SQLStore extends Auth_OpenID_OpenIDStore { $associations); // return the most recently issued one. - list($assoc) = $associations[0]; + list(, $assoc) = $associations[0]; return $assoc; } else { return null; diff --git a/plugins/openid/lib/Auth/OpenID/Server.php b/plugins/openid/lib/Auth/OpenID/Server.php index df8550a0..0901d507 100644 --- a/plugins/openid/lib/Auth/OpenID/Server.php +++ b/plugins/openid/lib/Auth/OpenID/Server.php @@ -813,7 +813,7 @@ class Auth_OpenID_CheckIDRequest extends Auth_OpenID_Request { private $claimed_id = ''; - private $identity = ''; + public $identity = ''; /** * @param Auth_OpenID_Message $message |