about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-09-04 04:58:42 +0000
committerEric Wong <e@80x24.org>2015-09-04 04:58:42 +0000
commitba11fa54dd0d26c96fd1410028b4f356959c24a8 (patch)
tree08ae7017618320d7ae7403334563aa01a6e19430 /lib
parent2701bc7c796af5c9b1b0dac99e722742299e4d85 (diff)
downloadpublic-inbox-ba11fa54dd0d26c96fd1410028b4f356959c24a8.tar.gz
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.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/View.pm3
1 files changed, 1 insertions, 2 deletions
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` <a\nhref=\"$m\">$s</a>\n" .
-                         "$pfx  $f @ $d\n";
+                $$dst .= "$pfx` <a\nhref=\"$m\">$s</a> by $f @ $d\n";
         } else {
                 $$dst .= "$pfx` <a\nhref=\"$m\">$f @ $d</a>\n";
         }