rewrite_relative_url: do not skip urls containing :
This commit is contained in:
parent
4f100ece19
commit
a547fef6ab
|
@ -2048,9 +2048,7 @@
|
||||||
* @return string Absolute URL
|
* @return string Absolute URL
|
||||||
*/
|
*/
|
||||||
function rewrite_relative_url($url, $rel_url) {
|
function rewrite_relative_url($url, $rel_url) {
|
||||||
if (strpos($rel_url, ":") !== false) {
|
if (strpos($rel_url, "://") !== false) {
|
||||||
return $rel_url;
|
|
||||||
} else if (strpos($rel_url, "://") !== false) {
|
|
||||||
return $rel_url;
|
return $rel_url;
|
||||||
} else if (strpos($rel_url, "//") === 0) {
|
} else if (strpos($rel_url, "//") === 0) {
|
||||||
# protocol-relative URL (rare but they exist)
|
# protocol-relative URL (rare but they exist)
|
||||||
|
|
Loading…
Reference in New Issue