diff options
author | Thomas Willingham <founder@kakste.com> | 2012-08-09 01:35:46 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2012-08-09 01:35:46 +0100 |
commit | 29b8b8f82b72f646ea4c55d66766bd0e0c950657 (patch) | |
tree | 4b0b3a7c7fe941cddbdb359d4a7e3384e6b33dd6 /include/oembed.php | |
parent | 5b1a4100e07db023b0f6dae89aa009e74992b7e6 (diff) | |
parent | c28da5673731acbedecb4209c38b72046db597e1 (diff) | |
download | volse-hubzilla-29b8b8f82b72f646ea4c55d66766bd0e0c950657.tar.gz volse-hubzilla-29b8b8f82b72f646ea4c55d66766bd0e0c950657.tar.bz2 volse-hubzilla-29b8b8f82b72f646ea4c55d66766bd0e0c950657.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'include/oembed.php')
-rwxr-xr-x | include/oembed.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/oembed.php b/include/oembed.php index a4452586e..6fc4c5371 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -12,7 +12,9 @@ function oembed_replacecb($matches){ function oembed_fetch_url($embedurl){ - $txt = Cache::get($embedurl); + $a = get_app(); + + $txt = Cache::get($a->videowidth . $embedurl); // These media files should now be caught in bbcode.php // left here as a fallback in case this is called from another source @@ -38,7 +40,7 @@ function oembed_fetch_url($embedurl){ $entries = $xpath->query("//link[@type='application/json+oembed']"); foreach($entries as $e){ $href = $e->getAttributeNode("href")->nodeValue; - $txt = fetch_url($href . '&maxwidth=425'); + $txt = fetch_url($href . '&maxwidth=' . $a->videowidth); break; } } @@ -47,7 +49,7 @@ function oembed_fetch_url($embedurl){ if ($txt==false || $txt==""){ // try oohembed service - $ourl = "http://oohembed.com/oohembed/?url=".urlencode($embedurl).'&maxwidth=425'; + $ourl = "http://oohembed.com/oohembed/?url=".urlencode($embedurl).'&maxwidth=' . $a->videowidth; $txt = fetch_url($ourl); } @@ -55,7 +57,7 @@ function oembed_fetch_url($embedurl){ if ($txt[0]!="{") $txt='{"type":"error"}'; //save in cache - Cache::set($embedurl,$txt); + Cache::set($a->videowidth . $embedurl,$txt); } |