aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-02-19 14:19:49 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-02-19 14:19:49 +0000
commit93da909d9cc514d50705d59ae95786e55b758958 (patch)
tree55f0a0cc703d6cc6ca25823485de1b790db4aa6e
parent6f312b54db9179f93a09195aad2baf8964bf7c56 (diff)
downloadsemanticscuttle-93da909d9cc514d50705d59ae95786e55b758958.tar.gz
semanticscuttle-93da909d9cc514d50705d59ae95786e55b758958.tar.bz2
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
-rw-r--r--scuttle.css1
-rw-r--r--templates/bookmarks.tpl.php6
2 files changed, 4 insertions, 3 deletions
diff --git a/scuttle.css b/scuttle.css
index 211e587..2303ff4 100644
--- a/scuttle.css
+++ b/scuttle.css
@@ -261,6 +261,7 @@ p.commondescription {
color: #555;
font-weight: bold;
border-left: 1px solid #CC8;
+ width: 70%;
}
p.tags {
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'])
<?php
if(isset($currenttag) && $cdservice->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']). "<br/>";
- echo filter($description['cdDescription']). "<br/>";
+ echo nl2br(filter($description['cdTitle'])). "<br/>";
+ echo nl2br(filter($description['cdDescription'])). "<br/>";
}
if($logged_on_userid>0) {