summaryrefslogtreecommitdiffstats
path: root/Auth
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2008-06-05 20:34:02 +0000
committertailor <cygnus@janrain.com>2008-06-05 20:34:02 +0000
commitbbdeca60b6f2a2ee99e0b9d34402ff28f6ad2c61 (patch)
tree87b7bf9d2377d459360511093354c1ce90fdae0f /Auth
parent80c81fa2d9b330cd1b9c192b9259233e00304899 (diff)
downloadphp-openid-bbdeca60b6f2a2ee99e0b9d34402ff28f6ad2c61.zip
php-openid-bbdeca60b6f2a2ee99e0b9d34402ff28f6ad2c61.tar.gz
php-openid-bbdeca60b6f2a2ee99e0b9d34402ff28f6ad2c61.tar.bz2
[project @ Auth_Yadis_Yadis::discover: Correctly test for null fetcher parameter]
Diffstat (limited to 'Auth')
-rw-r--r--Auth/Yadis/Yadis.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/Yadis/Yadis.php b/Auth/Yadis/Yadis.php
index 371f248..b031cb9 100644
--- a/Auth/Yadis/Yadis.php
+++ b/Auth/Yadis/Yadis.php
@@ -326,7 +326,7 @@ class Auth_Yadis_Yadis {
$headers = array("Accept: " . Auth_Yadis_CONTENT_TYPE .
', text/html; q=0.3, application/xhtml+xml; 0.5');
- if (!$fetcher) {
+ if ($fetcher === null) {
$fetcher = Auth_Yadis_Yadis::getHTTPFetcher($timeout);
}