diff options
| -rw-r--r-- | templates/users.tpl.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/templates/users.tpl.php b/templates/users.tpl.php index edce48d..c209f94 100644 --- a/templates/users.tpl.php +++ b/templates/users.tpl.php @@ -14,7 +14,7 @@ if ($users && count($users) > 0) {  <?php  $contents = '<';  foreach ($users as $row) { -    echo  '<strong>'.$row['username'].'</strong><li><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>'.$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>';  }  ?>  </ul> | 
