dev #38

Merged
lopar merged 22 commits from dev into master 2021-02-03 08:56:49 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 7f344df1dc - Show all commits

View File

@ -70,7 +70,7 @@ class Nick extends User
*/
public function short($showInvisibility = 0):string
{
if ($showInvisibility && $this->getInvisibilityStatus()) {
if (!$showInvisibility && $this->getInvisibilityStatus()) {
return INVIS;
} else {
return htmlspecialchars($this->login);