]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Bug fix: improve list for IE browser
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 18 May 2009 10:35:57 +0000 (10:35 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 18 May 2009 10:35:57 +0000 (10:35 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@322 b3834d28-1941-0410-a4f8-b48e95affb8f

templates/users.tpl.php

index edce48d9295570fbc5605a317d2be3e85a7efd4e..c209f9473df4054d6c13af06ba731d53f6a46470 100644 (file)
@@ -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>