Skip to content
Snippets Groups Projects
Commit bf88bd10 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

do not show 0 when administered group has no users

parent 1734cc09
No related branches found
No related tags found
No related merge requests found
......@@ -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; ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment