From b4520bb8b184fe19cbd8db360284cb585d9eadc7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 11 Mar 2012 12:36:08 +0400 Subject: rewrite_relative_url: add theoretical fix for magnet links (refs #436) --- include/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 8a3c607f3..84b6da015 100644 --- a/include/functions.php +++ b/include/functions.php @@ -4805,7 +4805,9 @@ * @return string Absolute URL */ function rewrite_relative_url($url, $rel_url) { - if (strpos($rel_url, "://") !== false) { + if (strpos($rel_url, "magnet:") === 0) { + return $rel_url; + } else if (strpos($rel_url, "://") !== false) { return $rel_url; } else if (strpos($rel_url, "/") === 0) { -- cgit v1.2.3