1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-17 18:36:50 +02:00

Site Url without trailing slashes

This commit is contained in:
Awilum
2014-01-03 23:45:28 +02:00
parent 8d681709d2
commit 8b0ba10a5a
4 changed files with 10 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
<?php foreach ($users as $user) { ?>
<tr>
<td>
<a href="<?php echo Site::url(); ?>users/<?php echo $user['id']; ?>"><?php echo $user['login']; ?></a>
<a href="<?php echo Site::url(); ?>/users/<?php echo $user['id']; ?>"><?php echo $user['login']; ?></a>
</td>
</tr>
<?php } ?>