missing return value check

This commit is contained in:
James Walker 2010-02-22 23:28:15 -05:00
parent f4b34d67c5
commit cd561657c2

View File

@ -108,6 +108,10 @@ class Webfinger
$content = $this->fetchURL($url);
if (!$content) {
return false;
}
return XRD::parse($content);
}