Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
86a0179c
Commit
86a0179c
authored
May 03, 2018
by
Dominik Hebeler
Browse files
Bugfix beim Botschutz
parent
a277c8fe
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/HumanVerification.php
View file @
86a0179c
...
...
@@ -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
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment