summaryrefslogtreecommitdiffstats
path: root/Auth/Yadis/Manager.php
diff options
context:
space:
mode:
authorTim Preston <tim.preston@anusf.anu.edu.au>2010-05-07 11:18:41 +0800
committerlillialexis <lillialexis@gmail.com>2010-07-20 03:11:00 +0800
commit55b2d4e37deeb31b9e227d923652a657fc80ee4c (patch)
treec70181cadc13b5317156318bcf1cf843b2f18d58 /Auth/Yadis/Manager.php
parentb643228707f6ec4c793c82bd8f152ab31a4e0e23 (diff)
downloadphp-openid-55b2d4e37deeb31b9e227d923652a657fc80ee4c.zip
php-openid-55b2d4e37deeb31b9e227d923652a657fc80ee4c.tar.gz
php-openid-55b2d4e37deeb31b9e227d923652a657fc80ee4c.tar.bz2
fixed Parse::match() returning different types and cleaned call-by-ref warnings
Auth/OpenID/Parse.php The match() function takes a reference parameter $match and, depending on execution flow, either returns that as an array or a string. This has been modified to now return an array in both cases. Auth/OpenID/Consumer.php Auth/Yadis/Manager.php Fixed two function calls with explicit call-by-reference parameters.
Diffstat (limited to 'Auth/Yadis/Manager.php')
-rw-r--r--Auth/Yadis/Manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/Yadis/Manager.php b/Auth/Yadis/Manager.php
index ee6f68b..5829de6 100644
--- a/Auth/Yadis/Manager.php
+++ b/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);
}