diff options
author | tailor <cygnus@janrain.com> | 2007-10-02 23:42:48 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-10-02 23:42:48 +0000 |
commit | 5e9ff67810cb6e3911cd80ec1dd7f6c0204fabac (patch) | |
tree | 9640a3a5dfdb0e9f8776e308730d01d31eb69009 | |
parent | 829cbf7c025e9e72d6a58f4c787fa8a446c7717e (diff) | |
download | php-openid-5e9ff67810cb6e3911cd80ec1dd7f6c0204fabac.zip php-openid-5e9ff67810cb6e3911cd80ec1dd7f6c0204fabac.tar.gz php-openid-5e9ff67810cb6e3911cd80ec1dd7f6c0204fabac.tar.bz2 |
[project @ Fix FailureResponse instantiation]
-rw-r--r-- | Auth/OpenID/Consumer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php index 4fe8cb5..9e2a451 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -878,7 +878,7 @@ class Auth_OpenID_GenericConsumer { $bare_args = $message->getArgs(Auth_OpenID_BARE_NS); foreach ($bare_args as $key => $value) { if (Auth_OpenID::arrayGet($q, $key) != $value) { - return new Auth_OpenID_FailureResponse( + return new Auth_OpenID_FailureResponse(null, sprintf("Parameter %s = %s not in return_to URL", $key, $value)); } |