Prevent overwriting of user's attributes on register

This commit is contained in:
Davis
2016-09-13 02:22:09 -05:00
committed by GitHub
parent 34f3d93ce5
commit eef63745e6

View File

@ -115,7 +115,9 @@ class RegisterUserHandler
// from the get-go.
if (isset($token)) {
foreach ($token->payload as $k => $v) {
$user->$k = $v;
if ($user->$k == "" || !isset($user->$k)) {
$user->$k = $v;
}
}
if (isset($token->payload['email'])) {