Merge pull request #15555 from rullzer/fix_15494

Initial fix for #15494
This commit is contained in:
Morris Jobke 2015-04-12 23:00:32 +02:00
commit 75adee1ebd
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ var UserList = {
* @returns table row created for this user
*/
add: function (user, sort) {
if (this.currentGid && _.indexOf(user.groups, this.currentGid) < 0) {
if (this.currentGid && this.currentGid !== '_everyone' && _.indexOf(user.groups, this.currentGid) < 0) {
return;
}