lib/PublicInbox/View.pm | 15 ++++++++-------
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 0de53cb22ec7ba2c865caf253005ad33f089d853..65d7d019b3018d40f1880b9d7e4bfe62722cfe7c 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -576,26 +576,27 @@ my $srch = $ctx->{srch};
my $mid = mid_clean($hdr->header_raw('Message-ID'));
my $sres = $srch->get_thread($mid);
my $nr = $sres->{total};
- my $expand = qq(expand ) .
- qq(/ mbox.gz ) .
- qq(/ Atom feed);
+ my $expand = qq(expand[flat) .
+ qq(|nested] ) .
+ qq(mbox.gz ) .
+ qq(Atom feed);
my $parent = in_reply_to($hdr);
$$dst .= "\nThread overview: ";
if ($nr <= 1) {
if (defined $parent) {
- $$dst .= "($expand)\n ";
+ $$dst .= "$expand\n ";
$$dst .= ghost_parent("$tpfx../", $parent) . "\n";
} else {
- $$dst .= "[no followups, yet] ($expand)\n";
+ $$dst .= "[no followups] $expand\n";
}
$ctx->{next_msg} = undef;
$ctx->{parent_msg} = $parent;
return;
}
- $$dst .= "$nr+ messages in thread ($expand";
- $$dst .= qq! / [top])\n!;
+ $$dst .= "$nr+ messages / $expand";
+ $$dst .= qq! top\n!;
my $subj = $hdr->header('Subject');
defined $subj or $subj = '';