YouTube videos can no longer be displayed in full screen. Is there a solution for this?
YouTube Videos not Fullscreen
« on July 15th, 2017, 07:05 PM »
// Depending on the plugin, use different parameters
if (empty($arr['plugin']) || $arr['plugin'] == 'flash')
{
$plugin = array(
'classid' => 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
'type' => 'application/x-shockwave-flash',
'params' => array(
'wmode' => 'transparent', 'quality' => 'high', 'allowFullScreen' => 'true', 'allowScriptAccess' => !empty($arr['allow-script']) ? 'always' : 'never',
'pluginspage' => 'http://get.adobe.com/flashplayer', 'autoplay' => 'false', 'autostart' => 'false',
),
);
}