From 18635a57f8dde238763a0f62306d9eb738446744 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Tue, 30 Aug 2022 13:07:39 +0000 Subject: [PATCH] wait #5420 --- inc/ws/Util/html5/master/class.ws.html5.links.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 3c0e63898..e2947d058 100644 --- a/inc/ws/Util/html5/master/class.ws.html5.links.php +++ b/inc/ws/Util/html5/master/class.ws.html5.links.php @@ -1921,7 +1921,11 @@ class imageLink extends contentLink public function getHTMLContent() { - return ''; + if (stristr($this->image_rollover, 'type=zoom')) { + return '
'; + } else { + return ''; + } } } -- 2.39.5