X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FContent%2FOEmbed.php;h=0093ba11af38a8e948ab6cca40d5b0c59be0cf40;hb=2dbeae701f8686f0f14aeca2d1968adde086677e;hp=7adff8908682d26e189dec42198f870f0496a1c0;hpb=df706484cdf2e7a066ff54ddeacc4175f27db964;p=friendica.git diff --git a/src/Content/OEmbed.php b/src/Content/OEmbed.php index 7adff89086..0093ba11af 100644 --- a/src/Content/OEmbed.php +++ b/src/Content/OEmbed.php @@ -86,8 +86,7 @@ class OEmbed $redirects = 0; $html_text = Network::fetchUrl($embedurl, false, $redirects, 15, 'text/*'); if ($html_text) { - $dom = new DOMDocument(); - $dom->loadHTML($html_text); + $dom = @DOMDocument::loadHTML($html_text); if ($dom) { $xpath = new DOMXPath($dom); $entries = $xpath->query("//link[@type='application/json+oembed']"); @@ -275,8 +274,7 @@ class OEmbed $html_text = mb_convert_encoding($text, 'HTML-ENTITIES', mb_detect_encoding($text)); // If it doesn't parse at all, just return the text. - $dom = new DOMDocument(); - $dom->loadHTML($html_text); + $dom = @DOMDocument::loadHTML($html_text); if (!$dom) { return $text; }