Fix for issue 1191 - Embedded Youtube video isn't playing when SSL is active
This commit is contained in:
parent
3d26e1d233
commit
bc5c470cac
|
@ -78,6 +78,11 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){
|
||||||
if (!is_object($j))
|
if (!is_object($j))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Always embed the SSL version
|
||||||
|
if (isset($j->html))
|
||||||
|
$j->html = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"),
|
||||||
|
array("https://www.youtube.com/", "https://player.vimeo.com/"), $j->html);
|
||||||
|
|
||||||
$j->embedurl = $embedurl;
|
$j->embedurl = $embedurl;
|
||||||
|
|
||||||
// If fetching information doesn't work, then improve via internal functions
|
// If fetching information doesn't work, then improve via internal functions
|
||||||
|
|
|
@ -20,6 +20,7 @@ function oembed_content(&$a){
|
||||||
echo "<html><body>";
|
echo "<html><body>";
|
||||||
$url = base64url_decode($a->argv[1]);
|
$url = base64url_decode($a->argv[1]);
|
||||||
$j = oembed_fetch_url($url);
|
$j = oembed_fetch_url($url);
|
||||||
|
|
||||||
echo $j->html;
|
echo $j->html;
|
||||||
// logger('mod-oembed ' . $j->html, LOGGER_ALL);
|
// logger('mod-oembed ' . $j->html, LOGGER_ALL);
|
||||||
echo "</body></html>";
|
echo "</body></html>";
|
||||||
|
|
Loading…
Reference in a new issue