From 326da8c312abef799eb2d9642cce4aa034123020 Mon Sep 17 00:00:00 2001 From: Dominik Pfennig <dominik@suma-ev.de> Date: Thu, 3 May 2018 09:30:25 +0200 Subject: [PATCH] =?UTF-8?q?Parameter=20"appversion"=20zur=20Whitelist=20hi?= =?UTF-8?q?nzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Middleware/HumanVerification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/HumanVerification.php b/app/Http/Middleware/HumanVerification.php index d40d84a9b..e5ab070d0 100644 --- a/app/Http/Middleware/HumanVerification.php +++ b/app/Http/Middleware/HumanVerification.php @@ -25,7 +25,7 @@ class HumanVerification * If someone that uses a bot finds this out we * might have to change it at some point. */ - if($request->filled('password') || $request->filled('key') || !env('BOT_PROTECTION', false)){ + if($request->filled('password') || $request->filled('key') || $request->filled('appversion') || !env('BOT_PROTECTION', false)){ return $next($request); } -- GitLab