aboutsummaryrefslogtreecommitdiffstats
path: root/admin/templates/users.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/templates/users.php')
-rw-r--r--admin/templates/users.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/templates/users.php b/admin/templates/users.php
index 509fca64103..e769dcd4fc5 100644
--- a/admin/templates/users.php
+++ b/admin/templates/users.php
@@ -35,8 +35,8 @@
<tbody>
<?php foreach($_["users"] as $user): ?>
<tr x-uid="<?php echo $user["name"] ?>">
- <td x-use="username"><span x-use="usernamespan"><?php echo $user["name"]; ?></span></td>
- <td x-use="usergroups"><span x-use="usergroupsspan"><?php echo $user["groups"]; ?></span></td>
+ <td x-use="username"><div x-use="usernamediv"><?php echo $user["name"]; ?></div></td>
+ <td x-use="usergroups"><div x-use="usergroupsdiv"><?php if( $user["groups"] ){ echo $user["groups"]; }else{echo "&nbsp";} ?></div></td>
<td><a class="removeuserbutton" href="">remove</a></td>
</tr>
<?php endforeach; ?>