Avoid problems with uid=0

This commit is contained in:
Michael 2020-11-19 17:19:14 +00:00
parent fa5acb3b21
commit bd0e2dc0a8
4 changed files with 4 additions and 4 deletions

View file

@ -166,7 +166,7 @@ class Profile
}
}
$profile = User::getOwnerDataById($user['uid'], false);
$profile = !empty($user['uid']) ? User::getOwnerDataById($user['uid'], false) : [];
if (empty($profile) && empty($profiledata)) {
Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);