From: Eric Wong Date: Fri, 4 Sep 2015 04:58:42 +0000 (+0000) Subject: view: one line for thread subjects X-Git-Tag: v1.0.0~915 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=ba11fa54dd0d26c96fd1410028b4f356959c24a8;p=public-inbox.git view: one line for thread subjects We truncate subjects in the Xapian document anyways, so lines should not be too long and it hopefully won't throw off the vertical display. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index bb3afda7..5c536228 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -722,8 +722,7 @@ sub _inline_header { my $m = PublicInbox::Hval->new_msgid($mid); $m = $upfx . '../' . $m->as_href . '/'; if (defined $s) { - $$dst .= "$pfx` $s\n" . - "$pfx $f @ $d\n"; + $$dst .= "$pfx` $s by $f @ $d\n"; } else { $$dst .= "$pfx` $f @ $d\n"; }