This is an automated email from the ASF dual-hosted git repository.
mbrohl pushed a commit to branch release17.12
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/release17.12 by this push:
new 8322171 Multi Part Input Parameters not Available in Groovy Event (OFBIZ-5048)
8322171 is described below
commit 832217135a4f1e6cffef2ef15d115f43613166bc
Author: Michael Brohl <
[hidden email]>
AuthorDate: Fri Jan 31 15:51:51 2020 +0100
Multi Part Input Parameters not Available in Groovy Event
(OFBIZ-5048)
This change provides easier access to the FileItem by not wrapping it
into a buffer.
---
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 97c5a0f..9156bcd 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, ByteBuffer.wrap(item.get()));
+ multiPartMap.put(fieldName, item);
multiPartMap.put("_" + fieldName + "_size", item.getSize());
multiPartMap.put("_" + fieldName + "_fileName", fileName);
multiPartMap.put("_" + fieldName + "_contentType", item.getContentType());