From 15fd6822e4959e27525e52e9ec4e03d01370b5a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Thu, 11 Mar 2021 12:40:31 +0100 Subject: [PATCH] Ops, missing ";" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- src/Module/Proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Proxy.php b/src/Module/Proxy.php index c7f7673b8..787b68e11 100644 --- a/src/Module/Proxy.php +++ b/src/Module/Proxy.php @@ -131,7 +131,7 @@ class Proxy extends BaseModule // Store original image if ($direct_cache) { // direct cache , store under ./proxy/ - $filename = $basepath . '/proxy/' . ProxyUtils::proxifyUrl($request['url'], true) + $filename = $basepath . '/proxy/' . ProxyUtils::proxifyUrl($request['url'], true); file_put_contents($filename, $image->asString()); chmod($filename, DI::config()->get('system', 'proxy_file_chmod', 0640)); } elseif($cachefile !== '') {