From f3d6a3f3e0ea4aa0dfa9bda40117e91b5608e88a Mon Sep 17 00:00:00 2001 From: veselcraft Date: Fri, 3 Jun 2022 16:48:01 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20compatibility=20by=20changing=20WebP=20fo?= =?UTF-8?q?rmat=20=F0=9F=A4=AE=20to=20JPEG=20=F0=9F=98=8E=F0=9F=A5=B0?= =?UTF-8?q?=F0=9F=A5=BA=F0=9F=8F=B3=EF=B8=8F=E2=80=8D=F0=9F=8C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/Presenters/CaptchaPresenter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/Presenters/CaptchaPresenter.php b/Web/Presenters/CaptchaPresenter.php index 31864d0..3451b95 100644 --- a/Web/Presenters/CaptchaPresenter.php +++ b/Web/Presenters/CaptchaPresenter.php @@ -14,7 +14,7 @@ class CaptchaPresenter extends SimplePresenter header("Pragma: no-cache"); header("Expires: Wed, 12 Feb 2003 00:00:00 GMT"); header("Cache-Control: no-cache, no-store, no-transform, must-revalidate"); - $image->send(Image::WEBP, 32); + $image->send(Image::JPEG); exit; } }