lib/PublicInbox/View.pm | 9 +-------- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index bc4c7ac70cfd90831c625ba8fb1189ab6bdb5614..c65e4684d27587ae26e0410e04f117dd72770926 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -68,14 +68,7 @@ $subj = PublicInbox::Hval->new_oneline($subj)->as_html; my $pfx = (' ' x $level); my $ts = $mime->header('X-PI-Date'); - my $time = '%H:%M UTC'; - my $fmt = $time; - if ($now > ($ts + (365 * 24 * 60 * 60))) { - # doesn't have to be exactly 1 year - $fmt = '%Y/%m/%d ' . $time; - } elsif ($now > ($ts + (24 * 60 * 60))) { - $fmt = '%m/%d ' . $time; - } + my $fmt = '%Y-%m-%d %H:%M UTC'; $ts = POSIX::strftime($fmt, gmtime($ts)); $rv .= "$pfx$subj\n$pfx";