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
LQDN Adminsys
don
Commits
174ebf57
Commit
174ebf57
authored
Nov 20, 2018
by
Okhin
Browse files
CHeck if is array
parent
48fd5420
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/controller/campaign.php
View file @
174ebf57
...
...
@@ -108,14 +108,14 @@ class Campaign extends Controller
$user
=
$f3
->
get
(
'container'
)[
'user_finder'
]
->
findByEmail
(
\
Utils
::
asl
(
$email
));
if
(
count
(
$user
)
>
0
)
{
if
(
count
(
$user
)
>
0
&&
is_array
(
$user
)
)
{
// We have an existing user, we should try to login with the provided password
// or 403.
$mapper
=
new
\
DB\SQL\Mapper
(
$f3
->
get
(
'DB'
),
'users'
);
$auth
=
new
\
Auth
(
$mapper
,
array
(
'id'
=>
'email'
,
'pw'
=>
'hash'
));
$login
=
$auth
->
login
(
$email
,
$hash
);
if
(
!
$login
)
{
$f3
->
error
(
40
3
);
$f3
->
error
(
40
0
,
"count(user): "
.
count
(
$user
)
.
"user:
$user
, email:
$email
, pass:
$hash
"
);
}
$email
=
$user
[
'email'
];
$user_id
=
$user
[
'id'
];
...
...
app/view/campaign/errors.html
View file @
174ebf57
...
...
@@ -2,12 +2,14 @@
<div
class=
"row"
>
<div
class=
"col-md-10 col-md-offset-1 header"
>
<h2><span>
{{ @ERROR.code }} - {{ @ERROR.status }}
</span></h2>
<span>
{{ @@emsg }}
</span>
<hr>
</div>
</div>
<div
class=
"row"
>
<check
if=
"{{ @ERROR.code == 403 }}"
>
<div
class=
"col-md-5 col-md-offset-1 well light-blue"
>
<h2><span>
{{ @ERROR.code }} - {{ @ERROR.status }}
</span></h2>
{{ _("Accès refusé.
<br>
Votre mot de passe est invalide.") }}
</div>
<div
class=
"col-md-5 well sky-blue"
>
...
...
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