about summary refs log tree commit homepage
path: root/lib/PublicInbox/View.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/View.pm')
-rw-r--r--lib/PublicInbox/View.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index f4f6da11..530c878f 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -694,7 +694,7 @@ sub _msg_page_prepare_obuf {
         for my $v ($eml->header('Date')) {
                 $v = ascii_html($v);
                 obfuscate_addrs($obfs_ibx, $v) if $obfs_ibx; # possible :P
-                $rv .= "Date: $v\n";
+                $rv .= qq{Date: $v\t<a\nhref="#r">[thread overview]</a>\n};
         }
         if (!$nr) { # first (and only) message, common case
                 $ctx->{-title_html} = join(' - ', @title);
@@ -739,7 +739,8 @@ sub thread_skel ($$$) {
                         $$skel .= SKEL_EXPAND."\n ";
                         $$skel .= ghost_parent('../', $parent) . "\n";
                 } else {
-                        $$skel .= '[no followups] '.SKEL_EXPAND."\n";
+                        $$skel .= "<a\nid=r>[no followups]</a> ".
+                                        SKEL_EXPAND."\n";
                 }
                 $ctx->{next_msg} = undef;
                 $ctx->{parent_msg} = $parent;