diff options
Diffstat (limited to 'vendors/php-openid/Auth/Yadis')
-rw-r--r-- | vendors/php-openid/Auth/Yadis/Manager.php | 2 | ||||
-rw-r--r-- | vendors/php-openid/Auth/Yadis/XRDS.php | 2 | ||||
-rw-r--r-- | vendors/php-openid/Auth/Yadis/Yadis.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/vendors/php-openid/Auth/Yadis/Manager.php b/vendors/php-openid/Auth/Yadis/Manager.php index ee6f68bcb..5829de6ca 100644 --- a/vendors/php-openid/Auth/Yadis/Manager.php +++ b/vendors/php-openid/Auth/Yadis/Manager.php @@ -413,7 +413,7 @@ class Auth_Yadis_Discovery { list($yadis_url, $services) = call_user_func($discover_cb, $this->url, - &$fetcher); + $fetcher); $manager = $this->createManager($services, $yadis_url); } diff --git a/vendors/php-openid/Auth/Yadis/XRDS.php b/vendors/php-openid/Auth/Yadis/XRDS.php index 1f5af96fb..044d1e761 100644 --- a/vendors/php-openid/Auth/Yadis/XRDS.php +++ b/vendors/php-openid/Auth/Yadis/XRDS.php @@ -429,7 +429,7 @@ class Auth_Yadis_XRDS { foreach ($filters as $filter) { - if (call_user_func_array($filter, array(&$service))) { + if (call_user_func_array($filter, array($service))) { $matches++; if ($filter_mode == SERVICES_YADIS_MATCH_ANY) { diff --git a/vendors/php-openid/Auth/Yadis/Yadis.php b/vendors/php-openid/Auth/Yadis/Yadis.php index 9ea2db7f9..f8853671e 100644 --- a/vendors/php-openid/Auth/Yadis/Yadis.php +++ b/vendors/php-openid/Auth/Yadis/Yadis.php @@ -141,7 +141,7 @@ function Auth_Yadis_getServiceEndpoints($input_url, $xrds_parse_func, } $yadis_result = call_user_func_array($discover_func, - array($input_url, &$fetcher)); + array($input_url, $fetcher)); if ($yadis_result === null) { return array($input_url, array()); |