diff options
author | friendica <info@friendica.com> | 2014-10-08 20:37:46 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-08 20:37:46 -0700 |
commit | 9ac12d6f328c50a46f487da501ee775fdf9b58f8 (patch) | |
tree | 1cec76c9549ae1a8023a690fa2266187fa84f46b /include/oembed.php | |
parent | 6d0fbba7b4dd6d9059cb7e1a2750124f60bbf8c4 (diff) | |
download | volse-hubzilla-9ac12d6f328c50a46f487da501ee775fdf9b58f8.tar.gz volse-hubzilla-9ac12d6f328c50a46f487da501ee775fdf9b58f8.tar.bz2 volse-hubzilla-9ac12d6f328c50a46f487da501ee775fdf9b58f8.zip |
oembed issues
Diffstat (limited to 'include/oembed.php')
-rwxr-xr-x | include/oembed.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/oembed.php b/include/oembed.php index 8ce0fee96..e08b287d1 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -92,7 +92,8 @@ function oembed_fetch_url($embedurl){ function oembed_format_object($j){ $a = get_app(); $embedurl = $j->embedurl; - $jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null) ); + + $jhtml = oembed_iframe($j->embedurl,(isset($j->width) ? $j->width : null), (isset($j->height) ? $j->height : null)); $ret="<span class='oembed ".$j->type."'>"; switch ($j->type) { @@ -127,7 +128,6 @@ function oembed_format_object($j){ }; break; case "photo": { $ret.= "<img width='".$j->width."' src='".$j->url."'>"; - //$ret.= "<img width='".$j->width."' height='".$j->height."' src='".$j->url."'>"; $ret.="<br>"; }; break; case "link": { @@ -163,13 +163,12 @@ function oembed_iframe($src,$width,$height) { $height = intval($height) + 80; $width = intval($width) + 40; - $a = get_app(); - - $sandbox = ((strpos($src,get_app()->get_hostname())) ? ' sandbox="allow-scripts" ' : ''); + $s = z_root() . '/oembed/' . base64url_encode($src); - $s = $a->get_baseurl()."/oembed/".base64url_encode($src); + // Make sure any children are sandboxed within their own iframe. - return '<iframe ' . $sandbox . ' height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' . t('Embedded content') . '</iframe>'; + return '<iframe height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' + . t('Embedded content') . '</iframe>'; } |