From: vincent@cubedesigners.com Date: Fri, 16 Feb 2018 15:52:36 +0000 (+0000) Subject: #1911 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=d7aef5f6e0b13b0eefb584737b986a22cccfbdfa;p=cubeextranet.git #1911 --- 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;