Issue 5010: Don't show removed users

This commit is contained in:
Michael 2018-05-24 04:44:02 +00:00
parent 44caf05f06
commit 4a67919be7
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class Profile
*/
public static function load(App $a, $nickname, $profile = 0, $profiledata = [], $show_connect = true)
{
$user = dba::selectFirst('user', ['uid'], ['nickname' => $nickname]);
$user = dba::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
if (!DBM::is_result($user) && empty($profiledata)) {
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);