Da youtube jetzt youtu.be nutzt für Videos, müsste das in oxmediaurl.php entsprechend geändert werden:
if (strpos($sUrl, ‘youtube.com’)) {
Sieht ab Zeile 135 jetzt so bei mir aus:
if (strpos($sUrl, ‘youtube.com’)) {
$sYoutubeUrl = str_replace(“YouTube”, “YouTube”, $sUrl);
$sYoutubeUrl = preg_replace(‘/&/’, ‘?’, $sYoutubeUrl, 1);
}
if (strpos($sUrl, ‘youtu.be’)) {
$sYoutubeUrl = str_replace(“youtu.be”, “YouTube”, $sUrl);
}