diff options
author | tailor <cygnus@janrain.com> | 2006-10-30 19:14:37 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-10-30 19:14:37 +0000 |
commit | e873641ddb00a2ee49ba7ef8f8c9c3c959704397 (patch) | |
tree | 6f096cffb28099e7ae3290f0574b58d63ac6b881 /Services | |
parent | 6505740a435ec7dc0b40dfcc6fc337dfbda35256 (diff) | |
download | php-openid-e873641ddb00a2ee49ba7ef8f8c9c3c959704397.zip php-openid-e873641ddb00a2ee49ba7ef8f8c9c3c959704397.tar.gz php-openid-e873641ddb00a2ee49ba7ef8f8c9c3c959704397.tar.bz2 |
[project @ Fix empty manager service list bug]
Diffstat (limited to 'Services')
-rw-r--r-- | Services/Yadis/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/Yadis/Manager.php b/Services/Yadis/Manager.php index e7eca71..524eea2 100644 --- a/Services/Yadis/Manager.php +++ b/Services/Yadis/Manager.php @@ -384,7 +384,7 @@ class Services_Yadis_Discovery { function getNextService($discover_cb, &$fetcher) { $manager = $this->getManager(); - if (!$manager) { + if (!$manager || (!$manager->services)) { $this->destroyManager(); $http_response = array(); |