* finish task #7534.

This commit is contained in:
z
2020-07-24 20:57:32 +08:00
parent d52b9c460a
commit 9b835f13fd
10 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ class userModel extends model
foreach($users as $account => $user)
{
$firstLetter = ucfirst(substr($account, 0, 1)) . ':';
if((strpos($params, 'noletter') !== false) or (isset($this->config->isINT) and $this->config->isINT)) $firstLetter = '';
if(strpos($params, 'noletter') !== false or !empty($this->config->isINT)) $firstLetter = '';
$users[$account] = $firstLetter . (($user->deleted and strpos($params, 'realname') === false) ? $account : ($user->realname ? $user->realname : $account));
}