From 93da909d9cc514d50705d59ae95786e55b758958 Mon Sep 17 00:00:00 2001 From: mensonge Date: Tue, 19 Feb 2008 14:19:49 +0000 Subject: Interface fix: improve visualisation of common descriptions (nl2br, css width) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@45 b3834d28-1941-0410-a4f8-b48e95affb8f --- templates/bookmarks.tpl.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'templates') diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 4751515..7837e6c 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -17,11 +17,11 @@ if((isset($currenttag) && $GLOBALS['enableCommonTagDescription']) getLastTagDescription($currenttag)) { $description = $cdservice->getLastTagDescription($currenttag); - echo filter($description['cdDescription']); + echo nl2br(filter($description['cdDescription'])); } elseif(isset($hash) && $cdservice->getLastBookmarkDescription($hash)) { $description = $cdservice->getLastBookmarkDescription($hash); - echo filter($description['cdTitle']). "
"; - echo filter($description['cdDescription']). "
"; + echo nl2br(filter($description['cdTitle'])). "
"; + echo nl2br(filter($description['cdDescription'])). "
"; } if($logged_on_userid>0) { -- cgit v1.2.3