temporarily disable oembed

This commit is contained in:
Friendika 2011-08-15 01:29:58 -07:00
parent 5b24050875
commit 9cd77b56ab
1 changed files with 3 additions and 0 deletions

View File

@ -7,6 +7,7 @@ function oembed_replacecb($matches){
function oembed_fetch_url($embedurl){
return;
$r = q("SELECT v FROM `cache` WHERE k='%s'",
dbesc($embedurl));
@ -17,6 +18,8 @@ function oembed_fetch_url($embedurl){
// try oembed autodiscovery
$html_text = fetch_url($embedurl);
if(! $html_text)
return;
$dom = @DOMDocument::loadHTML($html_text);
if ($dom){
$xpath = new DOMXPath($dom);