From: vincent@cubedesigners.com Date: Tue, 18 Aug 2015 19:02:20 +0000 (+0000) Subject: Fix size of multimedia content in popup X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=56605ac64014a275d6ea44eddb09e050252259d7;p=cubeextranet.git Fix size of multimedia content in popup --- diff --git a/inc/ws/Util/html5/class.ws.html5.links.php b/inc/ws/Util/html5/class.ws.html5.links.php index e959863a4..b7e736992 100644 --- a/inc/ws/Util/html5/class.ws.html5.links.php +++ b/inc/ws/Util/html5/class.ws.html5.links.php @@ -682,8 +682,8 @@ class htmlMultimediaLink extends wsHTML5Link { $this->_url .= '?' . $this->extra; } - $iw = $this->_config['width'] * 3; - $ih = $this->_config['height'] * 3; + $iw = $this->_config['width']; + $ih = $this->_config['height']; $res = ''; }