diff --git a/app/Http/Controllers/HumanVerification.php b/app/Http/Controllers/HumanVerification.php index fca51a103d21742545ca6693c6c0a276fb57e8e8..5e745da76ee875d6013e451804fbee17e3371cf4 100644 --- a/app/Http/Controllers/HumanVerification.php +++ b/app/Http/Controllers/HumanVerification.php @@ -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{