From a547fef6ab4da1d3691ac0f24aca8e9bb545bc25 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 20 Feb 2016 11:57:37 +0300 Subject: rewrite_relative_url: do not skip urls containing : --- include/functions2.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'include/functions2.php') diff --git a/include/functions2.php b/include/functions2.php index ed22a0623..c0ebcff83 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -2048,9 +2048,7 @@ * @return string Absolute URL */ function rewrite_relative_url($url, $rel_url) { - if (strpos($rel_url, ":") !== false) { - return $rel_url; - } else if (strpos($rel_url, "://") !== false) { + if (strpos($rel_url, "://") !== false) { return $rel_url; } else if (strpos($rel_url, "//") === 0) { # protocol-relative URL (rare but they exist) -- cgit v1.2.3