Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lib
unicaen
auth
Commits
926e9703
Commit
926e9703
authored
Mar 10, 2016
by
Laurent Lécluse
Browse files
Correctyion de bug empêchant d'utiliser des users créés directement en BDD
parent
bbe93664
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/UnicaenAuth/View/Helper/UserAbstract.php
View file @
926e9703
...
...
@@ -68,7 +68,7 @@ abstract class UserAbstract extends AbstractTranslatorHelper
}
$found
=
null
;
foreach
(
$keys
as
$key
)
{
if
(
array_key_exists
(
$key
,
$identity
))
{
if
(
array_key_exists
(
$key
,
$identity
)
&&
$identity
[
$key
]
!==
null
)
{
$found
=
$identity
[
$key
];
break
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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