mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Fix User::create return variable
This commit is contained in:
parent
afbfbde112
commit
d500d06a06
1 changed files with 2 additions and 2 deletions
|
@ -407,8 +407,8 @@ class User
|
|||
|
||||
call_hooks('register_account', $uid);
|
||||
|
||||
$result['user'] = $user;
|
||||
return $result;
|
||||
$return['user'] = $user;
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue