diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-16 09:49:51 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-16 09:49:51 +0000 |
commit | a15fd27e8adc18367d358c06e39343e0c34ed1e0 (patch) | |
tree | 4f48923f8725a4d8634379386a3a7610bf8d11a4 /templates | |
parent | ef5105371b7cf7d1a3b56d7007c5227dd3f1c8c9 (diff) | |
download | semanticscuttle-a15fd27e8adc18367d358c06e39343e0c34ed1e0.tar.gz semanticscuttle-a15fd27e8adc18367d358c06e39343e0c34ed1e0.tar.bz2 |
Bug fix: correct bug in copy (for some servers configuration)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@275 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-rw-r--r-- | templates/bookmarks.tpl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index f7cec77..97a37fa 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -189,7 +189,7 @@ if($currenttag!= '') { if ($userservice->isLoggedOn() && ($currentUser->getId() != $row['uId']) && !$bookmarkservice->bookmarkExists($row['bAddress'], $currentUser->getId())) { - $copy .= ' - <a href="'. createURL('bookmarks', $currentUser->getUsername() .'?action=add&address='. urlencode($row['bAddress']) .'&title='. urlencode($row['bTitle'])). '&description='.urlencode($row['bDescription']). '&tags='.$tagsForCopy .'">'. T_('Copy') .'</a>'; + $copy .= ' - <a href="'. createURL('bookmarks', $currentUser->getUsername() .'?action=add&copyOf='. $row['bId']) .'">'. T_('Copy') .'</a>'; } // Nofollow option |