diff options
-rw-r--r-- | templates/bookmarks.tpl.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 13ee3a0..4751515 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -139,7 +139,9 @@ window.onload = playerLoad; if ($row['bDescription'] != '') { echo '<div class="description">'. filter($row['bDescription']) ."</div>\n"; } - echo '<div class="address">'.$address.'</div>'; + if(!isset($hash)) { + echo '<div class="address">'.$address.'</div>'; + } echo '<div class="meta">'. date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . $cats . $copy . $edit ."</div>\n"; echo "</li>\n"; } |