Multiple values for one parameter ignored in RequestParamete
Generates text that depends on changing data (like dynamic HTML).
Brought to you by:
revusky
If you want to pass multiple values for a single parameter using GET, you do this as http://someurl/?var=a&var=b&var=c
However, if you loop over RequestParameters?keys, freemarker will just use var=a and ignore other values.
The proper behaviour would be for the var key to contain a sequence of values: a,b,c