From 84c38f68b2353c6dc70d4e48546aa20e982977b2 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Thu, 31 May 2018 14:33:04 +0000 Subject: [PATCH] fix #2076 @0:10 --- inc/ws/Util/html5/master/class.ws.html5.links.php | 2 +- 1 file changed, 1 insertion(+), 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 372faf62f..b374331e9 100644 --- a/inc/ws/Util/html5/master/class.ws.html5.links.php +++ b/inc/ws/Util/html5/master/class.ws.html5.links.php @@ -317,7 +317,7 @@ class wsHTML5Link { $datas = parse_url($loc); - if (isset($datas['scheme']) && !is_null($datas['scheme']) || strpos($loc,'#')==0) { + if (isset($datas['scheme']) && !is_null($datas['scheme']) || strpos($loc,'#')===0) { return $loc; } else { if ($css) { -- 2.39.5