An empty user id does not have children

This commit is contained in:
Michael 2021-06-19 06:27:25 +00:00
parent 08c4d7eedc
commit 7dd5ea42e9
2 changed files with 8 additions and 2 deletions

View file

@ -1505,6 +1505,10 @@ class User
*/
public static function identities($uid)
{
if (empty($uid)) {
return [];
}
$identities = [];
$user = DBA::selectFirst('user', ['uid', 'nickname', 'username', 'parent-uid'], ['uid' => $uid]);