You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2009/12/10 02:11:42 UTC

svn commit: r889046 - /ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java

Author: lektran
Date: Thu Dec 10 01:11:41 2009
New Revision: 889046

URL: http://svn.apache.org/viewvc?rev=889046&view=rev
Log:
Merged from trunk r889039:
Added new class SurveyEvents and event method that wraps a createSurveyResponse service call and additionally restores a previously stored request parameter map

Also partially merged r889043:
Fix typo

Added:
    ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java   (contents, props changed)
      - copied, changed from r889039, ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java

Copied: ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java (from r889039, ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java)
URL: http://svn.apache.org/viewvc/ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java?p2=ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java&p1=ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java&r1=889039&r2=889046&rev=889046&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java (original)
+++ ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java Thu Dec 10 01:11:41 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";
     }

Propchange: ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java
------------------------------------------------------------------------------
    svn:keywords = "Date Rev Author URL Id"

Propchange: ofbiz/branches/release09.04/applications/content/src/org/ofbiz/content/survey/SurveyEvents.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain