mirror of
https://github.com/flarum/framework.git
synced 2025-01-23 05:00:02 +08:00
Prevent overwriting of user's attributes on register
This commit is contained in:
parent
14ee7614ac
commit
b25ca5b508
|
@ -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'])) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user