Skip to content
Snippets Groups Projects
Commit 86a0179c authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Bugfix beim Botschutz

parent a277c8fe
No related branches found
No related tags found
1 merge request!1262WIP: Resolve "Spendenseite Texte anpassen"
......@@ -22,7 +22,7 @@ class HumanVerification extends Controller
$url = $request->input('url');
$user = DB::table('humanverification')->where('id', $id)->first();
if($user !== null && $user->locked === "1"){
if($user !== null && $user->locked === 1){
DB::table('humanverification')->where('id', $id)->update(['locked' => false]);
return redirect($url);
}else{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment