summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-09-08 18:29:11 +0200
committerLukas Reschke <lukas@owncloud.com>2014-09-08 18:29:11 +0200
commitffee4da397d8f74f8e4ce4f479c2a9447e60477c (patch)
tree12a3df968e46946613f4cc74452e34b45a2a1af3 /settings/templates
parent0ec9c2ccf8a2fd3451135c65146ff2c04ef0457b (diff)
parent6a56e03d482e723356b79e8d652922329daea1a4 (diff)
downloadnextcloud-server-ffee4da397d8f74f8e4ce4f479c2a9447e60477c.tar.gz
nextcloud-server-ffee4da397d8f74f8e4ce4f479c2a9447e60477c.zip
Merge pull request #10740 from owncloud/fix-everyone-group-count
Using countUsers method to return true count of users
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/users/part.grouplist.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/users/part.grouplist.php b/settings/templates/users/part.grouplist.php
index 255f2a6cf45..5b516bc0e16 100644
--- a/settings/templates/users/part.grouplist.php
+++ b/settings/templates/users/part.grouplist.php
@@ -12,15 +12,15 @@
</form>
</li>
<!-- Everyone -->
- <li data-gid="_everyone" data-usercount="<?php p($_["usercount"]); ?>" class="isgroup">
+ <li id="everyonegroup" data-gid="_everyone" data-usercount="" class="isgroup">
<a href="#">
<span class="groupname">
<?php p($l->t('Everyone')); ?>
</span>
</a>
<span class="utils">
- <span class="usercount">
- <?php p($_["usercount"]); ?>
+ <span class="usercount" id="everyonecount">
+
</span>
</span>
</li>