about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-09-12 01:23:30 +0000
committerEric Wong <e@80x24.org>2015-09-12 01:24:09 +0000
commit930f2746d48829af6ca8b14ba96e006204fae4d5 (patch)
tree91c61412db1f79383986221af759a06a80a92246 /lib
parente2ed3be62fbb53e16a9248a408a7a069a05842e6 (diff)
downloadpublic-inbox-930f2746d48829af6ca8b14ba96e006204fae4d5.tar.gz
This will be reused for search views.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/View.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 9f87546f..7d855550 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -598,7 +598,7 @@ sub ghost_parent {
         $mid = PublicInbox::Hval->new_msgid($mid);
         my $href = $mid->as_href;
         my $html = $mid->as_html;
-        qq{[parent not found: &lt;<a\nhref="$upfx../$href/">$html</a>&gt;]};
+        qq{[parent not found: &lt;<a\nhref="$upfx$href/">$html</a>&gt;]};
 }
 
 sub __thread_entry {
@@ -619,7 +619,7 @@ sub __thread_entry {
                 foreach my $g (@$ghost) {
                         $$cb->write("<table\nsummary=ghost><tr><td>" .
                                 (INDENT x $g->[1]) . "</td><td>" .
-                                PRE_WRAP . ghost_parent('../', $g->[0]) .
+                                PRE_WRAP . ghost_parent('../../', $g->[0]) .
                                 '</pre></td></table>');
                 }
         }
@@ -751,7 +751,8 @@ sub inline_dump {
         } else {
                 my $dot = $level == 0 ? '' : '` ';
                 my $pfx = (INDENT x $level) . $dot;
-                $$dst .= $pfx . ghost_parent($upfx, $node->messageid) . "\n";
+                $$dst .= $pfx;
+                $$dst .= ghost_parent("$upfx../", $node->messageid) . "\n";
         }
         inline_dump($dst, $state, $upfx, $node->child, $level+1);
         inline_dump($dst, $state, $upfx, $node->next, $level);