Issue 5010: Don't show removed users
authorMichael <heluecht@pirati.ca>
Thu, 24 May 2018 04:44:02 +0000 (04:44 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 24 May 2018 04:44:02 +0000 (04:44 +0000)
src/Model/Profile.php

index 8bb5194..a2e374e 100644 (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);