aboutsummaryrefslogtreecommitdiffstats
path: root/admin/templates/users.php
diff options
context:
space:
mode:
authorFrançois KUBLER <francois@kubler.org>2011-03-09 21:57:00 +0100
committerFrançois KUBLER <francois@kubler.org>2011-03-09 21:57:00 +0100
commitbf815b33908394fcda4fb6cb987caaca58b20fd0 (patch)
tree6238b364efdad687e6aeb69e6111cbd7af06776f /admin/templates/users.php
parent1935d85ef1200f7a73cccbca39f0b81ce411850c (diff)
downloadnextcloud-server-bf815b33908394fcda4fb6cb987caaca58b20fd0.tar.gz
nextcloud-server-bf815b33908394fcda4fb6cb987caaca58b20fd0.zip
Fixed PHP syntax in template files.
* Full PHP tags * Alternative syntax for control structures * Semi-colon at the end of instructions
Diffstat (limited to 'admin/templates/users.php')
-rw-r--r--admin/templates/users.php6
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; ?>