Subject: | reverse order of params added via query_param |
Hi,
URI::QueryParam reverses the order of added parameters, this one-liner
illustrate the problem:
perl -MURI -MURI::QueryParam -E 'my $uri = URI->new("blah");
$uri->query_param( abc => [1, 2, 3] ); print $uri->as_string'
that prints:
blah?abc=3&abc=2&abc=1
Obviously the opposite of what we'd expect.
However there's also a fix to this problem already (yay!), it only needs
merging.
https://gitorious.org/perl-uri/mainline/merge_requests/2
Thanks,
Daniel Lukasiak