Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
WW 2.2.1
-
None
Description
in the URL component, there's a check if the 'includeParameters' and 'value' properties are null, and if this is the case, it's treated as if 'includeParameters' is set to 'GET'. This causes incorrect behaviour when deploying the sample portlets in uPortal, since the 'action' property is used instead of the 'value' property. The test looks like this:
if ((includeParams == null && value == null) || GET.equalsIgnoreCase(includeParams)) {
Is a test for 'action' == null deliberately left out of this, or is it a bug?