aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-11-12 04:06:14 -0800
committerfriendica <info@friendica.com>2011-11-12 04:06:14 -0800
commitab6bf767df4a06494b314f7d0c3928a795b81bae (patch)
treea9e2a68d109be3d68e745af1beb5882d187dd5e2 /include
parentd23867f5a0564d680680e4bae3691bdecdcc183f (diff)
parente853549bc8a2d37b1be813396d7adb217cbda921 (diff)
downloadvolse-hubzilla-ab6bf767df4a06494b314f7d0c3928a795b81bae.tar.gz
volse-hubzilla-ab6bf767df4a06494b314f7d0c3928a795b81bae.tar.bz2
volse-hubzilla-ab6bf767df4a06494b314f7d0c3928a795b81bae.zip
Merge pull request #3 from fabrixxm/master
fix for #191 and some other
Diffstat (limited to 'include')
-rw-r--r--include/oembed.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/oembed.php b/include/oembed.php
index 3e86627e4..7c0da4594 100644
--- a/include/oembed.php
+++ b/include/oembed.php
@@ -56,7 +56,7 @@ function oembed_fetch_url($embedurl){
function oembed_format_object($j){
$embedurl = $j->embedurl;
- $jhtml = oembed_iframe($j->html,$j->width,$j->height );
+ $jhtml = oembed_iframe($j->embedurl,$j->width,$j->height );
$ret="<span class='oembed ".$j->type."'>";
switch ($j->type) {
case "video": {
@@ -116,7 +116,9 @@ function oembed_iframe($src,$width,$height) {
$height = intval($height) + 80;
$width = intval($width) + 40;
- $s = 'data:text/html;base64,' . base64_encode('<html><body>' . $src . '</body></html>');
+ $a = get_app();
+
+ $s = $a->get_baseurl()."/oembed/".base64url_encode($src);
return '<iframe height="' . $height . '" width="' . $width . '" src="' . $s . '" frameborder="no" >' . t('Embedded content') . '</iframe>';
}