diff options
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index ac87cad9d81..699af21efef 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -34,7 +34,7 @@ $_['subadmingroups'] = array_flip($items); <li> <a href="#"><?php p($l->t('Admins')); ?></a> <span class="utils"> - <span class="usercount"><?php p(count($adminGroup['useringroup'])); ?></span> + <span class="usercount"><?php if(count($adminGroup['useringroup']) > 0) { p(count($adminGroup['useringroup'])); } ?></span> </span> </li> <?php endforeach; ?> |