mirror of
https://github.com/flarum/framework.git
synced 2025-05-30 03:55:49 +08:00
Prevent overwriting of user's attributes on register
This commit is contained in:
@ -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'])) {
|
||||||
|
Reference in New Issue
Block a user