diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-02-13 17:41:47 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-02-13 17:41:47 +0000 |
commit | a1044ca5ea2595885be149f30adb91e02642c5a3 (patch) | |
tree | cc98e6c9a7a136129d56423a7971069f211adea1 /templates | |
parent | 8e1acd17a1e3bb6f66f9db0508cbf37789e9cfba (diff) | |
download | semanticscuttle-a1044ca5ea2595885be149f30adb91e02642c5a3.tar.gz semanticscuttle-a1044ca5ea2595885be149f30adb91e02642c5a3.tar.bz2 |
Interface design: hide multiple URLs repeated into history page
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@38 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates')
-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"; } |