diff options
Diffstat (limited to 'admin/templates/users.php')
-rw-r--r-- | admin/templates/users.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/templates/users.php b/admin/templates/users.php index 6ad10cafc46..7aa93baf496 100644 --- a/admin/templates/users.php +++ b/admin/templates/users.php @@ -18,8 +18,8 @@ <?php foreach($_["users"] as $user): ?> <tr> <td><input type="checkbox"></td> - <td><?php echo $user["name"] ?></td> - <td><?php echo $user["groups"] ?></td> + <td><?php echo $user["name"]; ?></td> + <td><?php echo $user["groups"]; ?></td> </tr> <?php endforeach; ?> </tbody> @@ -36,7 +36,7 @@ <tbody> <?php foreach($_["groups"] as $group): ?> <tr> - <td><?php echo $group["name"] ?></td> + <td><?php echo $group["name"]; ?></td> <td>remove</td> </tr> <?php endforeach; ?> |