diff options
Diffstat (limited to 'admin/templates')
-rw-r--r-- | admin/templates/index.php | 2 | ||||
-rw-r--r-- | admin/templates/plugins.php | 8 | ||||
-rw-r--r-- | admin/templates/users.php | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/admin/templates/index.php b/admin/templates/index.php index ad60ad08012..2ca7b0b2d3b 100644 --- a/admin/templates/index.php +++ b/admin/templates/index.php @@ -7,6 +7,6 @@ <ul> <?php foreach($_["adminpages"] as $i): ?> - <li><a href="<?php echo link_to($i["app"], $i["file"]) ?>"><?php echo $i["name"] ?></a></li> + <li><a href="<?php echo link_to($i["app"], $i["file"]); ?>"><?php echo $i["name"]; ?></a></li> <?php endforeach; ?> </ul> diff --git a/admin/templates/plugins.php b/admin/templates/plugins.php index ef9ef4fa4e9..8f5e87d3e80 100644 --- a/admin/templates/plugins.php +++ b/admin/templates/plugins.php @@ -18,10 +18,10 @@ </thead> <tbody> <?php foreach($_["plugins"] as $plugin): ?> - <td><?php echo $plugin["info"]["id"] ?></td> - <td><?php echo $plugin["info"]["version"] ?></td> - <td><?php echo $plugin["info"]["name"] ?></td> - <td><?php echo $plugin["info"]["author"] ?></td> + <td><?php echo $plugin["info"]["id"]; ?></td> + <td><?php echo $plugin["info"]["version"]; ?></td> + <td><?php echo $plugin["info"]["name"]; ?></td> + <td><?php echo $plugin["info"]["author"]; ?></td> <td>enable</td> <?php endforeach; ?> </tbody> 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; ?> |