diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-09 16:13:33 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-09 16:13:33 +0200 |
commit | b15510ed9aec0d085da0caa634707c0da53c5ad0 (patch) | |
tree | 6105ce93036c675cee884a7b2233febf91aaf632 /settings/ajax | |
parent | 506a3400e5215946da0c10ae8fa6045ed90ffd51 (diff) | |
download | nextcloud-server-b15510ed9aec0d085da0caa634707c0da53c5ad0.tar.gz nextcloud-server-b15510ed9aec0d085da0caa634707c0da53c5ad0.zip |
magic strings - bad kungfu
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/userlist.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php index 32237d60b6e..2bf40686b87 100644 --- a/settings/ajax/userlist.php +++ b/settings/ajax/userlist.php @@ -34,6 +34,9 @@ if (isset($_GET['limit'])) { } if (isset($_GET['gid']) && !empty($_GET['gid'])) { $gid = $_GET['gid']; + if ($gid === '_everyone') { + $gid = false; + } } else { $gid = false; } |