Skip Menu |

This queue is for tickets about the HTTP-Request-Params CPAN distribution.

Report information
The Basics
Id: 14158
Status: new
Priority: 0/
Queue: HTTP-Request-Params

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.01
Fixed in: (no value)



Subject: multipart/form-data, with only one param
the following post POST localhost HTTP/1.1 Host: router.example.com Content-Length: 69 Content-Type: multipart/form-data; boundary=xYzZY --xYzZY Content-Disposition: form-data; name="test123" testdata --xYzZY-- does fail, because Email::Mime, detects one Mine part only. In "sub _find_params": Show quoted text
> if ( $self->mime->parts > 1 ) {
is not true. The line should read Show quoted text
> if ( $self->mime->parts > 1 || ($self->mime->parts)[0] ne $self->mime ) {