diff options
author | http://j3h.us/ <http://j3h.us/@aja.local> | 2008-06-20 22:46:49 +0000 |
---|---|---|
committer | http://j3h.us/ <http://j3h.us/@aja.local> | 2008-06-20 22:46:49 +0000 |
commit | 81c49fa2a5ea13814c92bce10c5a94bcde84e59b (patch) | |
tree | 3f3c5fedadd9cb5454850260ff7825e96d79ff50 /Auth/OpenID | |
parent | ddce7335fa166f8535af74097340800e08337664 (diff) | |
download | php-openid-81c49fa2a5ea13814c92bce10c5a94bcde84e59b.zip php-openid-81c49fa2a5ea13814c92bce10c5a94bcde84e59b.tar.gz php-openid-81c49fa2a5ea13814c92bce10c5a94bcde84e59b.tar.bz2 |
[project @ Fix Consumer's OpenID 1 checkid_immediate failure handling (thanks to Evan Prodromou)]
Diffstat (limited to 'Auth/OpenID')
-rw-r--r-- | Auth/OpenID/Consumer.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php index 0034c07..6631cba 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -723,7 +723,8 @@ class Auth_OpenID_GenericConsumer { 'user_setup_url'); if ($this->_checkSetupNeeded($message)) { - return SetupNeededResponse($endpoint, $user_setup_url); + return new Auth_OpenID_SetupNeededResponse( + $endpoint, $user_setup_url); } else { return $this->_doIdRes($message, $endpoint, $return_to); } |