about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-06-30 18:53:14 +0000
committerEric Wong <e@80x24.org>2016-06-30 18:53:29 +0000
commit645b5c06e789ddc9d97e76c1d4445ae9b7022599 (patch)
tree9fd181888a036a9bd31aa987ab843da931717d08 /lib
parent6dde5d1b907daf685b29397160a3d446307118de (diff)
downloadpublic-inbox-645b5c06e789ddc9d97e76c1d4445ae9b7022599.tar.gz
This fixes the '^' (up) link in the $INBOX/new.html endpoint
for search-less displays.
Diffstat (limited to 'lib')
-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 8487c2ad..11d8dd53 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -125,9 +125,10 @@ sub index_entry {
         my $root_anchor = $ctx->{root_anchor} || '';
         my $irt = in_reply_to($hdr);
 
-        my $rv = '<b>'.ascii_html($subj).'</b>';
-        $rv = "<u\nid=u>$rv</u>" if $root_anchor eq $id_m;
-        $rv .= "\n";
+        my $rv = "<a\nhref=#e$id\nid=m$id>*</a> ";
+        $subj = '<b>'.ascii_html($subj).'</b>';
+        $subj = "<u\nid=u>$subj</u>" if $root_anchor eq $id_m;
+        $rv .= $subj . "\n";
         $rv .= _th_index_lite($mid_raw, $irt, $id, $ctx);
         my @tocc;
         foreach my $f (qw(To Cc)) {
@@ -241,8 +242,7 @@ sub _th_index_lite {
                         $rv .= $pad . $mapping->{$nn->messageid}->[1];
                 }
         }
-        $rv .= "<a\nhref=#e$id\nid=m$id>_</a> ";
-        $rv .= "<a\nhref=#r$id>$s_s, $s_c; $ctx->{s_nr}</a>\n";
+        $rv .= $pad ."<a\nhref=#r$id>$s_s, $s_c; $ctx->{s_nr}</a>\n";
 }
 
 sub walk_thread {