Bug #73484 ยป videorenderer.diff
typo3/sysext/core/Classes/Resource/Rendering/VimeoRenderer.php | ||
---|---|---|
{
|
||
if ($file instanceof FileReference) {
|
||
$autoplay = $file->getProperty('autoplay');
|
||
if ($autoplay !== null) {
|
||
if (!empty($autoplay)) {
|
||
$options['autoplay'] = $autoplay;
|
||
}
|
||
}
|
typo3/sysext/core/Classes/Resource/Rendering/YouTubeRenderer.php | ||
---|---|---|
{
|
||
if ($file instanceof FileReference) {
|
||
$autoplay = $file->getProperty('autoplay');
|
||
if ($autoplay !== null) {
|
||
if (!empty($autoplay)) {
|
||
$options['autoplay'] = $autoplay;
|
||
}
|
||
}
|