Fix User::create return variable

This commit is contained in:
Hypolite Petovan 2017-12-15 20:47:10 -05:00
parent afbfbde112
commit d500d06a06
1 changed files with 2 additions and 2 deletions

View File

@ -407,8 +407,8 @@ class User
call_hooks('register_account', $uid); call_hooks('register_account', $uid);
$result['user'] = $user; $return['user'] = $user;
return $result; return $return;
} }
/** /**