mirror of
https://github.com/flarum/framework.git
synced 2025-01-23 08:08:29 +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.
|
// from the get-go.
|
||||||
if (isset($token)) {
|
if (isset($token)) {
|
||||||
foreach ($token->payload as $k => $v) {
|
foreach ($token->payload as $k => $v) {
|
||||||
$user->$k = $v;
|
if ($user->$k == "" || !isset($user->$k)) {
|
||||||
|
$user->$k = $v;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($token->payload['email'])) {
|
if (isset($token->payload['email'])) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user