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
This commit is contained in:
parent
f324c988a5
commit
7519ba155b
1 changed files with 3 additions and 2 deletions
|
@ -164,9 +164,10 @@ window.onload = playerLoad;
|
|||
echo '<div>';
|
||||
|
||||
echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink">'. filter($row['bTitle']) ."</a></div>\n";
|
||||
if ($row['bDescription'] != '') {
|
||||
echo '<div class="description">'. filter($row['bDescription']) ."</div>\n";
|
||||
if ($row['bDescription'] == '') {
|
||||
$row['bDescription'] = '-';
|
||||
}
|
||||
echo '<div class="description">'. filter($row['bDescription']) ."</div>\n";
|
||||
if(!isset($hash)) {
|
||||
echo '<div class="address">'.$address.'</div>';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue