summaryrefslogtreecommitdiffstatshomepage
path: root/templates/bookmarks.tpl.php
diff options
context:
space:
mode:
authorGravatar mensonge2009-02-17 10:25:29 +0000
committerGravatar mensonge2009-02-17 10:25:29 +0000
commit9c00383f0f7f20326025010e3819528582add734 (patch)
treeab9d0a2df00664d94e136047d3107d6276e0cd5e /templates/bookmarks.tpl.php
parent2fb1f13f9335c01996b3e3e9ac6d5f60e5d3b211 (diff)
downloadscuttle-9c00383f0f7f20326025010e3819528582add734.tar.gz
scuttle-9c00383f0f7f20326025010e3819528582add734.zip
Interface fix: add css style to private notes on bookmarks page.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@286 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 bb09c4e..3059e17 100644
--- a/templates/bookmarks.tpl.php
+++ b/templates/bookmarks.tpl.php
@@ -232,7 +232,7 @@ if($currenttag!= '') {
} else {
// Improve description display (anchors, links, ...)
$bkDescription = preg_replace('|\[\/.*?\]|', '', filter($row['bDescription'])); // remove final anchor
- $bkDescription = preg_replace('|\[(.*?)\]|', ' <span class="anchorBookmark">$1</span> ', $bkDescription); // highlight starting anchor
+ $bkDescription = preg_replace('|\[(.*?)\]|', ' <span class="anchorBookmark">$1</span> ยป ', $bkDescription); // highlight starting anchor
$bkDescription = preg_replace('@((http|https|ftp)://.*?)( |\r|$)@', '<a href="$1" rel="nofollow">$1</a>$3', $bkDescription); // make url clickable
}