* [PATCH] www: unescape '+' in query parameter to space
@ 2016-06-26 3:56 Eric Wong
0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2016-06-26 3:56 UTC (permalink / raw)
To: meta
Fixes: fbcb7de93884b ("www: remove a few more Plack::Request dependencies")
---
lib/PublicInbox/WWW.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/PublicInbox/WWW.pm b/lib/PublicInbox/WWW.pm
index f1f4abd..d6b07bf 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;
--
EW
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-06-26 3:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-26 3:56 [PATCH] www: unescape '+' in query parameter to space Eric Wong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).