forked from GNUsocial/gnu-social
Suppress whinging during HTML parsing in profile page discovery for things that turn out to be XML feeds with funny namespaces.
This commit is contained in:
@@ -114,9 +114,10 @@ class DiscoveryHints {
|
||||
|
||||
static function _hcard($body, $url)
|
||||
{
|
||||
// DOMDocument::loadHTML may throw warnings on unrecognized elements.
|
||||
// DOMDocument::loadHTML may throw warnings on unrecognized elements,
|
||||
// and notices on unrecognized namespaces.
|
||||
|
||||
$old = error_reporting(error_reporting() & ~E_WARNING);
|
||||
$old = error_reporting(error_reporting() & ~(E_WARNING | E_NOTICE));
|
||||
|
||||
$doc = new DOMDocument();
|
||||
$doc->loadHTML($body);
|
||||
|
Reference in New Issue
Block a user