about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/View.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index d64aca40..9974cfa1 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -79,15 +79,15 @@ sub index_entry {
 
         $rv .= "$pfx<a\nname=\"$name\"></a>" .
                 "<a\nname=\"s$midx\"></a>" .
-                "<b>$subj</b>\n" .
-                "$pfx<a\nhref=\"#s$next\">next</a>";
+                "<b>$subj</b>\n$pfx";
 
+        $rv .= "- by $from @ $ts - ";
+
+        $rv .= "<a\nhref=\"#s$next\">next</a>";
         if ($prev >= 0) {
                 $rv .= "/<a\nhref=\"#s$prev\">prev</a>";
-        } else {
-                $rv .= '    ';
         }
-        $rv .= "        by $from @ $ts\n\n";
+        $rv .= "\n\n";
 
         my $irp = $header_obj->header_raw('In-Reply-To');
         my ($anchor_idx, $anchor);