diff --git a/plugins/af_zz_imgproxy/init.php b/plugins/af_zz_imgproxy/init.php index 8419b8a87..86f79c694 100644 --- a/plugins/af_zz_imgproxy/init.php +++ b/plugins/af_zz_imgproxy/init.php @@ -126,8 +126,12 @@ class Af_Zz_ImgProxy extends Plugin { foreach (explode(" " , $this->ssl_known_whitelist) as $host) { if (substr(strtolower($parts['host']), -strlen($host)) === strtolower($host)) { $parts['scheme'] = 'https'; - - return build_url($parts); + $url = build_url($parts); + if ($all_remote && $is_remote) { + break; + } else { + return $url; + } } }