Initial fix for #15494

remotes/origin/poc-doctrine-migrations
Roeland Jago Douma 2015-04-12 16:22:21 +07:00
parent 7ce4d2dec9
commit 2b8fc774d0
1 changed files with 1 additions and 1 deletions

@ -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;
}