Interface design: allow to access to users' bookmarks from last user sidebox. (Currently, we can just access to their profiles).

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@39 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-02-13 17:57:01 +00:00
parent a1044ca5ea
commit fe6cb7ee4d
2 changed files with 4 additions and 1 deletions

View File

@ -60,8 +60,10 @@ if ($watchnames) {
<?php
}
?>
<dt><?php echo T_('Bookmarks'); ?></dt>
<dd><a href="<?php echo createURL('bookmarks', $user) ?>"><?php echo T_('Go to bookmarks')?> >></a></dd>
</dl>
<?php
$this->includeTemplate($GLOBALS['bottom_include']);
?>
?>

View File

@ -20,6 +20,7 @@ foreach ($lastUsers as $row) {
echo '<a href="'.createURL('profile', $row['username']).'">';
echo $row['username'];
echo '</a>';
echo ' (<a href="'.createURL('bookmarks', $user).'">'.T_('bookmarks').'</a>)';
echo '</td></tr>';
}
echo '<tr><td><a href="'.createURL('users').'">...</a></td></tr>';