From 2b8fc774d0a62bc8dcd9bd880d513dc845827729 Mon Sep 17 00:00:00 2001
From: Roeland Jago Douma <roeland@famdouma.nl>
Date: Sun, 12 Apr 2015 16:22:21 +0200
Subject: [PATCH] Initial fix for #15494

---
 settings/js/users/users.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index 154003bb84..e67540fd11 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -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;
 		}
 
-- 
GitLab