Skip Menu |

This queue is for tickets about the URI CPAN distribution.

Report information
The Basics
Id: 26
Status: resolved
Priority: 0/
Queue: URI

People
Owner: Nobody in particular
Requestors: siracusa [...] mindspring.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: 1.22



Subject: Does not support multiple values for the same query param
Example: $uri = URI->new('http://foo.com/goo?a=1&a=2&a=3'); %query = $u->query_form; print $query{'a'}; # prints 3 I think $query{'a'} should (at least optionally) be an array reference: [ 1, 2, 3 ]