-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Description
The problem is described in https://rt.cpan.org/Ticket/Display.html?id=150855
It seems that a change in URI.pm is causing the problem. Before (until URI 5.18):
$ perl -MHTTP::Request::Common=POST -e 'warn((POST "http://localhost/something", { foo => undef })->dump)'
POST http://localhost/something
Content-Length: 4
Content-Type: application/x-www-form-urlencoded
foo=
After (with URI 5.19):
$ perl -MHTTP::Request::Common=POST -e 'warn((POST "http://localhost/something", { foo => undef })->dump)'
POST http://localhost/something
Content-Length: 3
Content-Type: application/x-www-form-urlencoded
foo
Note the mising equals sign.
abraxxa
Metadata
Metadata
Assignees
Labels
No labels