Merge pull request #2289 from mexon/mat/pullrequests

Only proxy URLs using HTTP or HTTPS
This commit is contained in:
Michael Vogel 2016-01-25 10:24:57 +01:00
commit ab317b8e83
1 changed files with 4 additions and 0 deletions

View File

@ -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);