From c28dad3b89f1fc08c553e4efddb2e6740e4c6173 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 27 Aug 2015 07:21:00 +0000 Subject: [PATCH] view: fix short followup links This was broken by commit 9a2931759c3dcbd879728b49151aa3f8a641b506 ("wire up to display non-suffixed Message-ID links") --- lib/PublicInbox/View.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 8ccdcfaf..51fee046 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -511,7 +511,7 @@ sub simple_dump { my $m = PublicInbox::Hval->new_msgid($mid); $f = PublicInbox::Hval->new($f); $d = PublicInbox::Hval->new($d); - $m = $m->as_href . '/'; + $m = '../' . $m->as_href . '/'; $f = $f->as_html; $d = $d->as_html . ' UTC'; if (length($s) == 0) { -- 2.50.0