diff options
author | tailor <cygnus@janrain.com> | 2006-12-08 19:18:44 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-12-08 19:18:44 +0000 |
commit | f6fc49f793a41270fa61e1db4848fce599e1bce4 (patch) | |
tree | 802d2b88ab5300745fe4ee6763b821bec87574be | |
parent | 73d8f848914c49f6c0013a0e2286e08fe8badce9 (diff) | |
download | php-openid-f6fc49f793a41270fa61e1db4848fce599e1bce4.zip php-openid-f6fc49f793a41270fa61e1db4848fce599e1bce4.tar.gz php-openid-f6fc49f793a41270fa61e1db4848fce599e1bce4.tar.bz2 |
[project @ Removed last of call-time references]
-rw-r--r-- | Auth/OpenID/Consumer.php | 2 | ||||
-rw-r--r-- | Auth/OpenID/Server.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php index fc2f885..7ea75c7 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -295,7 +295,7 @@ class Auth_OpenID_Consumer { $openid_url = Auth_OpenID::normalizeUrl($user_url); } - $disco =& new Services_Yadis_Discovery(&$this->session, + $disco =& new Services_Yadis_Discovery($this->session, $openid_url, $this->session_key_prefix); diff --git a/Auth/OpenID/Server.php b/Auth/OpenID/Server.php index db94ce1..b82bb4a 100644 --- a/Auth/OpenID/Server.php +++ b/Auth/OpenID/Server.php @@ -816,7 +816,7 @@ class Auth_OpenID_CheckIDResponse extends Auth_OpenID_ServerResponse { function Auth_OpenID_CheckIDResponse(&$request, $mode = 'id_res') { - parent::Auth_OpenID_ServerResponse(&$request); + parent::Auth_OpenID_ServerResponse($request); $this->fields['mode'] = $mode; $this->signed = array(); @@ -1054,7 +1054,7 @@ class Auth_OpenID_Encoder { $wr = new $cls(AUTH_OPENID_HTTP_REDIRECT, array('location' => $location)); } else { - return new Auth_OpenID_EncodingError(&$response); + return new Auth_OpenID_EncodingError($response); } return $wr; } |