Skip to content
Snippets Groups Projects
Commit 926e9703 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Correctyion de bug empêchant d'utiliser des users créés directement en BDD

parent bbe93664
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment