Hi, On 26 August 2010 09:56, k4rlchen <[email protected]> wrote: > GET /order?asdf=1;2;3;4;
In terms of HTTP this query is the same as: GET /order?asdf=1&2&3&4& and Django parses quesry strings accordingly to the HTTP specification. This is consitent with cgi.parse_qs(), so you should probably fix your application. -- Łukasz Rekucki -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

