aboutsummaryrefslogtreecommitdiffstats
path: root/include/oembed.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-04-26 09:05:47 +0200
committerMario Vavti <mario@mariovavti.com>2018-04-26 09:05:47 +0200
commit09666ae8e9d7195c4b839abd9b10ae23ff783558 (patch)
treec8947d413ed3b5258fe8e25b905d2cac98c034e0 /include/oembed.php
parent953d02e4b7c8ae7e1ccbecb37751936cd23710e0 (diff)
parentfe724acc3b78af5ed86b4bf0ff58bdd9b56356e2 (diff)
downloadvolse-hubzilla-09666ae8e9d7195c4b839abd9b10ae23ff783558.tar.gz
volse-hubzilla-09666ae8e9d7195c4b839abd9b10ae23ff783558.tar.bz2
volse-hubzilla-09666ae8e9d7195c4b839abd9b10ae23ff783558.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/oembed.php')
-rwxr-xr-xinclude/oembed.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/oembed.php b/include/oembed.php
index eee53b6c1..e677087a2 100755
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -234,9 +234,11 @@ function oembed_fetch_url($embedurl){
if(preg_match('#\<iframe(.*?)src\=[\'\"](.*?)[\'\"]#',$j['html'],$matches)) {
$x = z_fetch_url($matches[2]);
- $j['html'] = $x['body'];
+ $orig = $j['html'] = $x['body'];
}
-
+
+ logger('frame src: ' . $j['html'], LOGGER_DATA);
+
$j['html'] = purify_html($j['html'],$allow_position);
if($j['html'] != $orig) {
logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j['html'], LOGGER_DEBUG, LOG_INFO);