summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/openid/lib/Auth/Yadis/PlainHTTPFetcher.php')
-rw-r--r--plugins/openid/lib/Auth/Yadis/PlainHTTPFetcher.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/openid/lib/Auth/Yadis/PlainHTTPFetcher.php b/plugins/openid/lib/Auth/Yadis/PlainHTTPFetcher.php
index 26890539..7a1bbba9 100644
--- a/plugins/openid/lib/Auth/Yadis/PlainHTTPFetcher.php
+++ b/plugins/openid/lib/Auth/Yadis/PlainHTTPFetcher.php
@@ -34,6 +34,11 @@ class Auth_Yadis_PlainHTTPFetcher extends Auth_Yadis_HTTPFetcher {
return function_exists('openssl_open');
}
+ /**
+ * @param string $url
+ * @param array|null $extra_headers
+ * @return Auth_Yadis_HTTPResponse|null|bool
+ */
function get($url, $extra_headers = null)
{
if (!$this->canFetchURL($url)) {
@@ -44,6 +49,9 @@ class Auth_Yadis_PlainHTTPFetcher extends Auth_Yadis_HTTPFetcher {
$stop = time() + $this->timeout;
$off = $this->timeout;
+ $headers = array();
+ $code = '';
+ $body = '';
while ($redir && ($off > 0)) {