diff options
author | tailor <cygnus@janrain.com> | 2006-01-10 17:41:42 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-10 17:41:42 +0000 |
commit | ad89b35773b6fdfd008be6aefa31520cc7059d84 (patch) | |
tree | 84fbedae2b7b662e3b4d5ca3fa54e2679227e507 | |
parent | 5c16ee2ce9738a6ddf05ca50a2e7efe6457874b8 (diff) | |
download | php-openid-ad89b35773b6fdfd008be6aefa31520cc7059d84.zip php-openid-ad89b35773b6fdfd008be6aefa31520cc7059d84.tar.gz php-openid-ad89b35773b6fdfd008be6aefa31520cc7059d84.tar.bz2 |
[project @ Fixed file_get_contents call in plain fetcher]
-rw-r--r-- | Net/OpenID/Consumer/Fetchers.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Net/OpenID/Consumer/Fetchers.php b/Net/OpenID/Consumer/Fetchers.php index 1189c9a..080480f 100644 --- a/Net/OpenID/Consumer/Fetchers.php +++ b/Net/OpenID/Consumer/Fetchers.php @@ -74,9 +74,9 @@ function Net_OpenID_allowedURL($url) } class Net_OpenID_PlainFetcher extends Net_OpenID_HTTPFetcher { - function _fetch($request) + function _fetch($url) { - $data = file_get_contents(); + $data = file_get_contents($url); if ($data !== false) { return array(200, $url, $data); |