Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.1.0, 1.1.1, 1.1.2, 1.1.3, 1.1.4, 1.1.5, 1.1.6
-
None
-
None
Description
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.