-
Type:
Bug
-
Resolution: Fixed
-
Priority:
High
-
Affects Version/s: 3.6.5
-
Component/s: Dashboard & Gadgets
-
3.06
Preparing a new evolution of Kaamelot FastWorklog Portlet, I saw something strange in getVelocityParams() method...
protected Map getVelocityParams(final PortletConfiguration portletConfiguration)
{
Map params = super.getVelocityParams(portletConfiguration);
params.putAll(super.getVelocityParams(portletConfiguration));
params.put("description", getDescription(portletConfiguration));
return params;
}
The super.getVelocityParams(portletConfiguration); is called two times and then the request defined in Portlet is executed also two times in AbstractSearchResultsPortlet.