about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-11-18 01:36:55 +0000
committerEric Wong <e@80x24.org>2015-11-18 01:36:55 +0000
commitce17570322f4765d85b0c7edaf0c943f61e3dbe7 (patch)
treee793e14eb586304876ca840afc904c1eb13d4241
parent1a6df0f901165156de64fd167ce48fd726954c05 (diff)
downloadpublic-inbox-ce17570322f4765d85b0c7edaf0c943f61e3dbe7.tar.gz
They increase HTML size and add to visual noise without telling
enough useful information.
-rw-r--r--lib/PublicInbox/View.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 48c45536..ce97f615 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -861,13 +861,13 @@ sub dump_topics {
                 my $attr;
                 $ts = POSIX::strftime('%Y-%m-%d %H:%M', gmtime($ts));
                 if ($n == 1) {
-                        $attr = "created @ $ts UTC";
+                        $attr = "@ $ts UTC";
                         $n = "";
                 } else {
                         # $n isn't the total number of posts on the topic,
                         # just the number of posts in the current results
                         # window, so leave it unlabeled
-                        $attr = "updated @ $ts UTC";
+                        $attr = "@ $ts UTC";
                         $n = " ($n)";
                 }
                 if ($level == 0 || $attr ne $prev_attr) {