This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository
https://gitbox.apache.org/repos/asf/ofbiz-framework.gitThe following commit(s) were added to refs/heads/trunk by this push:
new 6d3d8f7 Fixed: Error in uploading very large files, ie >2MB
6d3d8f7 is described below
commit 6d3d8f73c2f78a50d7768253a343fbcf00712bd9
Author: Jacques Le Roux <
[hidden email]>
AuthorDate: Thu Apr 16 16:02:20 2020 +0200
Fixed: Error in uploading very large files, ie >2MB
(OFBIZ-11534)
This was not supposed to be committed, actually (wrong) part of OFBIZ-11597
---
.../src/main/java/org/apache/ofbiz/webapp/control/RequestHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/RequestHandler.java b/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/RequestHandler.java
index 30f8a76..166a5d7 100644
--- a/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/RequestHandler.java
+++ b/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/RequestHandler.java
@@ -255,7 +255,7 @@ public class RequestHandler {
Collection<RequestMap> rmaps = resolveURI(ccfg, request);
if (rmaps.isEmpty()) {
if (throwRequestHandlerExceptionOnMissingLocalRequest) {
- if (path.contains("/checkLogin/") || path.contains("/viewprofile")) {
+ if (path.contains("/checkLogin/")) {
// Nested requests related with checkLogin uselessly clutter the log. There is nothing to worry about, better remove this wrong error message.
return;
} else if (path.contains("/images/") || path.contains("d.png")) {