1
I include in the news module an youtube video.
I had the problem in the code /class/textsanitizer/youtube/youtube.php
static function decode($url, $width, $height) {
if (!preg_match("/^http://(www.)?youtube.com/watch?v=(.*)/i", $url, $matches)) {
trigger_error("Not matched: {$url} {$width} {$height}", E_USER_WARNING);
return "";
}
$src = "http://www.youtube.com/v/" . $matches[2];
I modified http to https for resolve.