diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-01-12 11:21:45 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-01-12 11:21:45 +0000 |
commit | 50a8a5b232b72a88103b94e07c6ba23f3fb806f0 (patch) | |
tree | cc52b25aba515d0e758aaa6ed671a65fed034706 /templates | |
parent | 67c9ffe55a6651d72c04c7bcd59455fd4aa5e608 (diff) | |
download | semanticscuttle-50a8a5b232b72a88103b94e07c6ba23f3fb806f0.tar.gz semanticscuttle-50a8a5b232b72a88103b94e07c6ba23f3fb806f0.tar.bz2 |
Interface fix: remove ':' into anchor display
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@226 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 56fadbe..2b30d87 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -200,7 +200,7 @@ if(isset($currenttag) && $currenttag!= '') { $bkDescription = '-'; } else { $bkDescription = preg_replace('|\[\/.*?\]|', '', filter($row['bDescription'])); // remove final anchor - $bkDescription = preg_replace('|\[(.*?)\]|', ' <br/><b>$1 : </b>', $bkDescription); // remove final anchor + $bkDescription = preg_replace('|\[(.*?)\]|', ' <br/><b>$1 </b>', $bkDescription); // highlight starting anchor } echo '<div class="description">'. $bkDescription ."</div>\n"; //if(!isset($hash)) { |