aboutsummaryrefslogtreecommitdiff
path: root/templates/bookmarks.tpl.php
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-02-13 17:41:47 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-02-13 17:41:47 +0000
commita1044ca5ea2595885be149f30adb91e02642c5a3 (patch)
treecc98e6c9a7a136129d56423a7971069f211adea1 /templates/bookmarks.tpl.php
parent8e1acd17a1e3bb6f66f9db0508cbf37789e9cfba (diff)
downloadsemanticscuttle-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/bookmarks.tpl.php')
-rw-r--r--templates/bookmarks.tpl.php4
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";
}