Fix 7778: Don't return empty string in permissions

This commit is contained in:
Michael 2019-10-29 06:01:50 +00:00
parent 87ed05e2f6
commit bef7eeed13
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ final class ACLFormatter
} elseif (in_array($item, [Group::FOLLOWERS, Group::MUTUALS])) {
$item = '<' . $item . '>';
} else {
$item = '';
unset($item);
}
}