about summary refs log tree commit homepage
path: root/lib/PublicInbox/View.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-09-02 09:10:53 +0000
committerEric Wong <e@80x24.org>2022-09-02 17:40:04 +0000
commit4fe706e6a86da985755cd101bc52ce813d044554 (patch)
treed859999be44922e56f0386dcc86a824a345908a3 /lib/PublicInbox/View.pm
parente512d54b21ddea2228fc19a3c5a19fa4b73c6040 (diff)
downloadpublic-inbox-4fe706e6a86da985755cd101bc52ce813d044554.tar.gz
For /$INBOX/$MSGID/ pages, we need to point all nav bar links
../ regardless of whether ->over exists.  I've also verified
this doesn't affect /$INBOX/new.html at all.
Diffstat (limited to 'lib/PublicInbox/View.pm')
-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 2e5228e1..11a94ba9 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -678,7 +678,7 @@ sub _msg_page_prepare_obuf {
                 $ctx->{chash} = content_hash($eml) if $ctx->{smsg}; # reused MID
                 $rv .= "<pre\nid=b>"; # anchor for body start
         }
-        $ctx->{-upfx} = '../' if $have_over;
+        $ctx->{-upfx} = '../';
         my @title; # (Subject[0], From[0])
         for my $v ($eml->header('From')) {
                 my @n = PublicInbox::Address::names($v);