From: Eric Wong Date: Fri, 21 Aug 2015 01:29:03 +0000 (+0000) Subject: view: "next" link in thread view goes to next Subject line X-Git-Tag: v1.0.0~1017 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=6a8f5c169911d1ee9338bb77a3d5302deb86fdb4;p=public-inbox.git view: "next" link in thread view goes to next Subject line It's a bit disconcerting to jump to the authorship line. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 96f632a6..4ed5344e 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -100,10 +100,10 @@ sub index_entry { if ($level) { $rv .= '
' . ('  ' x $level) . '
'; } - $rv .= '' . PRE_WRAP; + $rv .= "" . PRE_WRAP; $rv .= "$subj\n"; $rv .= "- by $from @ $ts UTC - "; - $rv .= "next"; + $rv .= "next"; if ($prev >= 0) { $rv .= "/prev"; }