about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-16 23:02:14 -0800
committerEric Wong <e@80x24.org>2021-03-17 19:03:11 +0000
commit0a14f0a22c7d7ce35a740df574878269c0d947f5 (patch)
treed3a3bfaebdadfaa6baa30d0a0cb9ad729406d698
parent0b6773dc9be1d148c5dadf44379fd3ae6b4a56de (diff)
downloadpublic-inbox-0a14f0a22c7d7ce35a740df574878269c0d947f5.tar.gz
This saves clients a redirect
-rw-r--r--lib/PublicInbox/WwwStream.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm
index bcf2ecec..1178a3c9 100644
--- a/lib/PublicInbox/WwwStream.pm
+++ b/lib/PublicInbox/WwwStream.pm
@@ -40,8 +40,8 @@ sub html_top ($) {
         my $desc = ascii_html($ibx->description);
         my $title = delete($ctx->{-title_html}) // $desc;
         my $upfx = $ctx->{-upfx} || '';
-        my $help = $upfx.'_/text/help';
-        my $color = $upfx.'_/text/color';
+        my $help = $upfx.'_/text/help/';
+        my $color = $upfx.'_/text/color/';
         my $atom = $ctx->{-atom} || $upfx.'new.atom';
         my $top = "<b>$desc</b>";
         if (my $t_max = $ctx->{-t_max}) {