Details
-
Type:
Bug Fix
-
Status:
Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 1.0.3.3
-
Component/s: Development
-
Security Level: Public (Public: Anyone can view)
-
Labels:None
-
Similar issues:
KULRICE-6632KualiMaintenanceDocumentAction is modifying the http request parameter map which is not permitted KULRICE-6519 Service which deal with cross-application data should implement appropriate fine-grained security models for access to that data KULRICE-2132Clean up WebUtils creation of an unused Map of parameters KULRICE-12864Action parameters do not get submitted correctly for non-ajax requests KULRICE-6605KSPD: Work on Http request logger KULRICE-4408allow hiding of the lookup header bar based on a http parameter KULRICE-3177I receive a HTTP Status 404 - Invalid path was requested error screen after selecting an ID data element on the Action List screen KULRICE-11155 KRAD request contains script data KULRICE-3905Modify DocumentRouteHeaderValue so that a route header's action requests, actions taken, and action items are obtained via the respective services instead KULRICE-7618 showDialog() - complete http request without returning to controller -
Rice Module:KNS
-
KAI Review Status:Not Required
-
KTI Review Status:Not Required
Description
Change the following code:
Map<String,String[]> paramMap = request.getParameterMap(); paramMap.put(KNSConstants.CUSTOM_ACTION, actionValue);
to:
Map<String,String[]> paramMap = new HashMap<String,String[]>(request.getParameterMap()); paramMap.put(KNSConstants.CUSTOM_ACTION, actionValue);
Issue Links
- cloned from
-
KULRICE-6632 KualiMaintenanceDocumentAction is modifying the http request parameter map which is not permitted
-
This has been fixed on the trunk of Rice 2.0.