From d7aef5f6e0b13b0eefb584737b986a22cccfbdfa Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Fri, 16 Feb 2018 15:52:36 +0000 Subject: [PATCH] #1911 --- inc/ws/Util/html5/master/class.ws.html5.links.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/ws/Util/html5/master/class.ws.html5.links.php b/inc/ws/Util/html5/master/class.ws.html5.links.php index a3779beb8..b36c4aa74 100644 --- a/inc/ws/Util/html5/master/class.ws.html5.links.php +++ b/inc/ws/Util/html5/master/class.ws.html5.links.php @@ -873,7 +873,7 @@ class htmlMultimediaLink extends wsHTML5Link { $res = ''; } - if (isset($this->_externalIframe)) { + if ($this->_externalIframe !== false) { $iw = $this->_config['width']; $ih = $this->_config['height']; $res = ''; @@ -932,7 +932,7 @@ class htmlMultimediaLink extends wsHTML5Link { $css .= $this->getCSSZIndex(); $css .= $this->getCSS(); $css .= '}'; - if ($this->_externalIframe) { + if ($this->_externalIframe !== false) { $css .= '#l_' . $this->id . '>iframe{' . wsHTML5::writeCSSUA('transform', 'scale(' . $this->getCssScale() . ')') . '}'; } return $css; -- 2.39.5