about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-06-26 03:46:56 +0000
committerEric Wong <e@80x24.org>2016-06-26 03:55:21 +0000
commit806aeb1ed447c5a4ff2bb2d34bce932a6bed7367 (patch)
tree8d6187c87c0080d81fb1acaa9d9f402020e68d64 /lib
parentc73653d4c159537504ccc6866a5595420fc1e28a (diff)
downloadpublic-inbox-806aeb1ed447c5a4ff2bb2d34bce932a6bed7367.tar.gz
Fixes: fbcb7de93884b ("www: remove a few more Plack::Request dependencies")
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/WWW.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/PublicInbox/WWW.pm b/lib/PublicInbox/WWW.pm
index f1f4abd5..d6b07bf7 100644
--- a/lib/PublicInbox/WWW.pm
+++ b/lib/PublicInbox/WWW.pm
@@ -48,6 +48,7 @@ sub call {
         my %qp = map {
                 my ($k, $v) = split('=', $_, 2);
                 $v = '' unless defined $v;
+                $v =~ tr/+/ /;
                 ($k, $v)
         } split(/[&;]/, uri_unescape($env->{QUERY_STRING}));
         $ctx->{qp} = \%qp;