From 2cc41409ffa285e0ebec115cfca41dfb9db27624 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Thu, 1 Oct 2020 15:23:03 +0000 Subject: [PATCH] done #3927 @1 --- inc/ws/Util/html5/master/class.ws.html5.links.php | 6 +++--- 1 file changed, 3 insertions(+), 3 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 b37975746..70f2221c5 100644 --- a/inc/ws/Util/html5/master/class.ws.html5.links.php +++ b/inc/ws/Util/html5/master/class.ws.html5.links.php @@ -1422,7 +1422,7 @@ class fileLink extends normalLink public function getTarget() { - return '_blank'; + return $this->target; } public function getDefaultTooltip() @@ -2417,9 +2417,9 @@ class slideshowLink extends normalLink if ($options['show_captions'] && null !== $slide['caption']) { // Caption font size can be overridden if specified in XML - $caption_style = $options['caption_size'] ? ' style="font-size:'. $options['caption_size'] .'"' : ''; + $caption_style = $options['caption_size'] ? ' style="font-size:' . $options['caption_size'] . '"' : ''; - $res .= '

' . $slide['caption'] . '

'; + $res .= '

' . $slide['caption'] . '

'; } $res .= ''; // .fb-slideshow-slide -- 2.39.5