From: Matthew Exon Date: Sun, 3 Jan 2016 05:49:35 +0000 (+0100) Subject: Only proxy URLs using HTTP or HTTPS X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2aa0c6d00d926ccfaa3b7c04a5a11d4febfca5fe;p=friendica.git Only proxy URLs using HTTP or HTTPS --- diff --git a/mod/proxy.php b/mod/proxy.php index c6bf653021..abcaf49127 100644 --- a/mod/proxy.php +++ b/mod/proxy.php @@ -238,6 +238,10 @@ function proxy_url($url, $writemode = false, $size = "") { $a = get_app(); + if (substr($url, 0, strlen('http')) !== 'http') { + return($url); + } + // Only continue if it isn't a local image and the isn't deactivated if (proxy_is_local_image($url)) { $url = str_replace(normalise_link($a->get_baseurl())."/", $a->get_baseurl()."/", $url);