about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-08-27 07:21:00 +0000
committerEric Wong <e@80x24.org>2015-08-27 07:21:00 +0000
commitc28dad3b89f1fc08c553e4efddb2e6740e4c6173 (patch)
tree635cda38026232af95bb5ff97584832144b9e762
parent5ac572c2b69470db354c6adb241e605eda19f727 (diff)
downloadpublic-inbox-c28dad3b89f1fc08c553e4efddb2e6740e4c6173.tar.gz
This was broken by commit 9a2931759c3dcbd879728b49151aa3f8a641b506
("wire up to display non-suffixed Message-ID links")
-rw-r--r--lib/PublicInbox/View.pm2
1 files changed, 1 insertions, 1 deletions
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) {