summaryrefslogtreecommitdiffstatshomepage
path: root/templates/bookmarks.tpl.php
diff options
context:
space:
mode:
authorGravatar mensonge2009-01-06 17:03:55 +0000
committerGravatar mensonge2009-01-06 17:03:55 +0000
commit75870b82d37c01dc3cdab51f37a4c1921a0688e0 (patch)
treec2d62130d58069c085a852097d3cb47f807da857 /templates/bookmarks.tpl.php
parent829d5327decb7ac53dc55fef99a2acd8ccccd834 (diff)
downloadscuttle-75870b82d37c01dc3cdab51f37a4c1921a0688e0.tar.gz
scuttle-75870b82d37c01dc3cdab51f37a4c1921a0688e0.zip
Bug fix: makes re-appear the bookmarks' author in bookmarks pages.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@217 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/bookmarks.tpl.php')
-rw-r--r--templates/bookmarks.tpl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php
index c223d5f..a47a18a 100644
--- a/templates/bookmarks.tpl.php
+++ b/templates/bookmarks.tpl.php
@@ -140,7 +140,7 @@ if(isset($currenttag) && $currenttag!= '') {
// User attribution
$copy = '';
- if (!isset($user) || isset($watched)) {
+ if ($user == '' || isset($watched)) {
$copy = ' '. T_('by') .' <a href="'. createURL('bookmarks', $row['username']) .'">'. $row['username'] .'</a>';
}