This is an automated email from the ASF dual-hosted git repository.

mbrohl pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release18.12 by this push:
     new de75e16  Revert "Multi Part Input Parameters not Available in Groovy 
Event (OFBIZ-5048)"
de75e16 is described below

commit de75e163fba948b0459d866292a80831ae449ce2
Author: Michael Brohl <mbr...@apache.org>
AuthorDate: Tue Feb 11 21:50:49 2020 +0100

    Revert "Multi Part Input Parameters not Available in Groovy Event 
(OFBIZ-5048)"
    
    This reverts commit 02d59bcd5b0b9040a2fda777d26c0879139ae646.
---
 framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java 
b/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
index 49ff74e..7bae1ec 100644
--- a/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
+++ b/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
@@ -275,7 +275,7 @@ public final class UtilHttp {
                                 fileName = fileName.substring(lastIndex + 1);
                             }
                         }
-                        multiPartMap.put(fieldName, item);
+                        multiPartMap.put(fieldName, 
ByteBuffer.wrap(item.get()));
                         multiPartMap.put("_" + fieldName + "_size", 
item.getSize());
                         multiPartMap.put("_" + fieldName + "_fileName", 
fileName);
                         multiPartMap.put("_" + fieldName + "_contentType", 
item.getContentType());

Reply via email to