From: mensonge Date: Thu, 13 Mar 2008 09:57:13 +0000 (+0000) Subject: Interface fix: improve visualisation in history if no descriptions for bookmarks X-Git-Tag: v0.90~84 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=7519ba155b934d46864eaa03a90810f63d85b394;p=semanticscuttle.git Interface fix: improve visualisation in history if no descriptions for bookmarks git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@76 b3834d28-1941-0410-a4f8-b48e95affb8f --- diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 9729802..84a67fe 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -164,9 +164,10 @@ window.onload = playerLoad; echo '
'; echo '\n"; - if ($row['bDescription'] != '') { - echo '
'. filter($row['bDescription']) ."
\n"; + if ($row['bDescription'] == '') { + $row['bDescription'] = '-'; } + echo '
'. filter($row['bDescription']) ."
\n"; if(!isset($hash)) { echo '
'.$address.'
'; }