portlet:param JSP tag doesn't handle multi-valued parameters
------------------------------------------------------------
Key: PLUTO-526
URL: https://issues.apache.org/jira/browse/PLUTO-526
Project: Pluto
Issue Type: Bug
Affects Versions: 1.1.6, 1.1.5, 1.1.4, 1.1.3, 1.1.2, 1.1.1, 1.1.0
Reporter: Eric Dalquist
Assignee: Eric Dalquist
Fix For: 2.0.0, 1.1.7
Using multiple portlet:param tags with the same name in both a render or action
URL results in only the last set value being on the final URL. According to the
specification each portlet:param tag adds the parameter name/value pair to the
URL.
Example of buggy tag usage:
<portlet:actionURL>
<portlet:param name="name1" value="valueA"/>
<portlet:param name="name2" value="value1"/>
<portlet:param name="name2" value="value2"/>
</portlet:actionURL>
The rendered URL would incude name1=valueA and name2=value2. The name2=value1
parameter would be missing.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.