Subject: | Parameters with multiple occurences not transformed correctly |
When the CGI contains more than one occurence of the same parameter
($q->param('parameter') returns an array), only the first parameter is
transformed to XML:
http://www.example.com/cgi-bin/test.cgi?param=val1;param=val2
gives <root><param>val1</param></root> instead of expected
<root><param>val1</param><param>val2</param></root>.