Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Dancer CPAN distribution.

Report information
The Basics
Id: 59283
Status: new
Priority: 0/
Queue: Dancer

People
Owner: Nobody in particular
Requestors: MPG [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.1805
Fixed in: (no value)



Subject: query parsing is broken
this query: /data.json?src_ip=131.243.24.11&dst_ip=198.32.44.130&start=2010-07-02+10%3A01%3A02&end=2010-07-09+11%3A02%3A01 for example is parsed and stored in the request->params as: $VAR2 = 'json'; $VAR3 = 'src_ip'; $VAR4 = '131.243.24.11'; $VAR5 = 'amp'; $VAR6 = [ '', '', '' ]; $VAR7 = 'end'; $VAR8 = '2010-07-09 11:02:01'; $VAR9 = 'start'; $VAR10 = '2010-07-02 10:01:02'; $VAR11 = 'dst_ip'; $VAR12 = '198.32.44.130 --------------- As you can see it fails to parse & entity properly. I suggest to urldecode it and then parse.