Author: lektran
Date: Thu Dec 10 01:02:37 2009
New Revision: 889043
URL:
http://svn.apache.org/viewvc?rev=889043&view=revLog:
Fix typo
Modified:
ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java
ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java
Modified: ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java?rev=889043&r1=889042&r2=889043&view=diff==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java (original)
+++ ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java Thu Dec 10 01:02:37 2009
@@ -58,7 +58,7 @@
Map<String, Object> combinedMap = UtilHttp.getCombinedMap(request);
if (combinedMap.containsKey("_ORIG_PARAM_MAP_ID_")) {
String origParamMapId = (String) combinedMap.get("_ORIG_PARAM_MAP_ID_");
- UtilHttp.restoreStashedParamaterMap(request, origParamMapId);
+ UtilHttp.restoreStashedParameterMap(request, origParamMapId);
}
return "success";
}
Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java?rev=889043&r1=889042&r2=889043&view=diff==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java Thu Dec 10 01:02:37 2009
@@ -1333,7 +1333,7 @@
return paramMapId;
}
- public static void restoreStashedParamaterMap(HttpServletRequest request, String paramMapId) {
+ public static void restoreStashedParameterMap(HttpServletRequest request, String paramMapId) {
HttpSession session = request.getSession();
Map<String, Map<String, Object>> paramMapStore = UtilGenerics.checkMap(session.getAttribute("_PARAM_MAP_STORE_"));
if (paramMapStore != null) {