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:
parent
a1044ca5ea
commit
fe6cb7ee4d
2 changed files with 4 additions and 1 deletions
|
@ -60,6 +60,8 @@ if ($watchnames) {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
<dt><?php echo T_('Bookmarks'); ?></dt>
|
||||||
|
<dd><a href="<?php echo createURL('bookmarks', $user) ?>"><?php echo T_('Go to bookmarks')?> >></a></dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -20,6 +20,7 @@ foreach ($lastUsers as $row) {
|
||||||
echo '<a href="'.createURL('profile', $row['username']).'">';
|
echo '<a href="'.createURL('profile', $row['username']).'">';
|
||||||
echo $row['username'];
|
echo $row['username'];
|
||||||
echo '</a>';
|
echo '</a>';
|
||||||
|
echo ' (<a href="'.createURL('bookmarks', $user).'">'.T_('bookmarks').'</a>)';
|
||||||
echo '</td></tr>';
|
echo '</td></tr>';
|
||||||
}
|
}
|
||||||
echo '<tr><td><a href="'.createURL('users').'">...</a></td></tr>';
|
echo '<tr><td><a href="'.createURL('users').'">...</a></td></tr>';
|
||||||
|
|
Loading…
Reference in a new issue