about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-09-01 08:58:27 +0000
committerEric Wong <e@80x24.org>2015-09-01 08:58:27 +0000
commit5908f2e4898c2c2780dce81951c263fca71583f7 (patch)
treea6effb9cfe6bb0c6681b1dda1ae24bd2226e53f2
parentcd486277621f00c108a49c4ba3c9fedbef0f70d5 (diff)
downloadpublic-inbox-5908f2e4898c2c2780dce81951c263fca71583f7.tar.gz
This fixes a regression introduced in
commit 1b4b2c7b8b2f2df8f114617d2e875eaf5c839ce0
("completely revamp URL structure to shorten permalinks")
-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 3d7ba6f5..29888f95 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -495,7 +495,7 @@ sub html_footer {
 
         my $srch = $ctx->{srch} if $ctx;
         my $upfx = $full_pfx ? '../' : '../../';
-        my $idx = $standalone ? "<a\nhref=\"$upfx\">index</a>" : '';
+        my $idx = $standalone ? " <a\nhref=\"$upfx\">index</a>" : '';
         if ($idx && $srch) {
                 my $next = thread_inline(\$idx, $ctx, $mime, $full_pfx);
                 $irt = $mime->header('In-Reply-To');