diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-18 10:35:57 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-05-18 10:35:57 +0000 |
commit | 9b7e6613409a5406121b673de2ad53518414ab9a (patch) | |
tree | 06a543bef87691ffa2a5b77c8cbe6a973a6c842d /templates/users.tpl.php | |
parent | 78c2fe4bd2e3658273756cf5e609547c6b5d4e61 (diff) | |
download | semanticscuttle-9b7e6613409a5406121b673de2ad53518414ab9a.tar.gz semanticscuttle-9b7e6613409a5406121b673de2ad53518414ab9a.tar.bz2 |
Bug fix: improve list for IE browser
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@322 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/users.tpl.php')
-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> |