summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Net/OpenID/Consumer/Fetchers.php4
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);