summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/users.tpl.php
diff options
context:
space:
mode:
authorGravatar Christian Weiske2011-03-20 22:15:34 +0100
committerGravatar Christian Weiske2011-03-20 22:15:34 +0100
commitbc178983b370ed005d569d70b4629e3181acc522 (patch)
treea7d5e99d85063641415b71f1b4160b3fb85a505a /data/templates/users.tpl.php
parent8146646a0e1c7535e62aeebab049f7b1740c86ae (diff)
parent975809a8347929c9eae9c6a8bf3beb8d92af63ef (diff)
downloadscuttle-bc178983b370ed005d569d70b4629e3181acc522.tar.gz
scuttle-bc178983b370ed005d569d70b4629e3181acc522.zip
Merge branch 'master' into jquery
Conflicts: doc/ChangeLog
Diffstat (limited to 'data/templates/users.tpl.php')
-rw-r--r--data/templates/users.tpl.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/data/templates/users.tpl.php b/data/templates/users.tpl.php
index c209f94..fa92bef 100644
--- a/data/templates/users.tpl.php
+++ b/data/templates/users.tpl.php
@@ -14,7 +14,14 @@ if ($users && count($users) > 0) {
<?php
$contents = '<';
foreach ($users as $row) {
- echo '<li><strong>'.$row['username'].'</strong> (<a href="'.createURL('profile', $row['username']).'">'.T_('profile').'</a> '.T_('created in').' '.date('M Y',strtotime($row['uDatetime'])).') : <a href="'.createURL('bookmarks', $row['username']).'">'.T_('bookmarks').'</a></li>';
+ echo '<li><strong>'
+ . SemanticScuttle_Model_UserArray::getName($row) . '</strong>'
+ . ' (<a href="' . createURL('profile', $row['username']) . '">'
+ . T_('profile') . '</a> '
+ . T_('created in') . ' '
+ . date('M Y', strtotime($row['uDatetime'])) . ')'
+ . ' : <a href="' . createURL('bookmarks', $row['username']).'">'
+ . T_('bookmarks') . '</a></li>';
}
?>
</ul>