From: Eric Wong Date: Wed, 30 Dec 2015 22:31:49 +0000 (+0000) Subject: view: "thread" in per-message view goes back to /t/ X-Git-Tag: v1.0.0~755 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=430a7799c319df9dcef0dae0a5aa0add0a40d6a1;p=public-inbox.git view: "thread" in per-message view goes back to /t/ Linking to the expanded thread page probably makes more sense as it avoid unnecessary scanning for the thread summary. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index ad03cfe2..20400470 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -580,7 +580,8 @@ sub html_footer { $irt .= ' ' x length('next '); } if ($p || $next) { - $irt .= "thread "; + my $tpfx = $full_pfx ? '' : '../'; + $irt .= "thread "; } else { $irt .= ' ' x length('thread '); }