From 9a46f7eb41b5e9d4edde8c5cd14a680b24a79f17 Mon Sep 17 00:00:00 2001 From: Bart Lantz Date: Sat, 17 Dec 2011 12:27:50 -0700 Subject: [PATCH] Added original date and updated date to bookmark output if different. If bModified is different from bDatetime, the bookmark is ordered by modified time from a previous commit, this commit prints both the modified date as well as the original date if they are different, to avoid confusion. --- templates/bookmarks.tpl.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index c79655e..d068a9a 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -100,7 +100,11 @@ if (count($bookmarks) > 0) { if ($row['bDescription'] != '') { echo '
'. filter($row['bDescription']) ."
\n"; } - echo '
'. date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . $cats . $copy . $edit ."
\n"; + if ($row['bDatetime'] == $row['bModified']) { + echo '
'. date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . $cats . $copy . $edit ."
\n"; + } else { + echo '
updated: '. date($GLOBALS['shortdate'], strtotime($row['bModified'])) . ", original: ". date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . $cats . $copy . $edit ."
\n"; + } echo "\n"; } ?> -- 2.30.2