diff options
author | tailor <cygnus@janrain.com> | 2007-03-22 18:16:22 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-03-22 18:16:22 +0000 |
commit | 900ae4d1d1cbdda4ce918ca8a813d1364fd73907 (patch) | |
tree | 3f52b03d40c885d1f73d3e497049178dd79d2aed /Auth | |
parent | 0e7262c6e711b9cf17f84bc75bfbb73b2a1168a9 (diff) | |
download | php-openid-900ae4d1d1cbdda4ce918ca8a813d1364fd73907.zip php-openid-900ae4d1d1cbdda4ce918ca8a813d1364fd73907.tar.gz php-openid-900ae4d1d1cbdda4ce918ca8a813d1364fd73907.tar.bz2 |
[project @ Fix fetcher parameter in discovery verification]
Diffstat (limited to 'Auth')
-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 9b852eb..bb515dd 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -977,7 +977,8 @@ class Auth_OpenID_GenericConsumer { { // oidutil.log('Performing discovery on %s' % (to_match.claimed_id,)) list($unused, $services) = call_user_func($this->discoverMethod, - $to_match->claimed_id); + $to_match->claimed_id, + $this->fetcher); if (!$services) { return new Auth_OpenID_FailureResponse(null, sprintf("No OpenID information found at %s", |