aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/oembed.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/oembed.php b/include/oembed.php
index 06a37d8e4..e86275e61 100644
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -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);