This is an automated email from the ASF dual-hosted git repository.
jleroux 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 9ec6a618bc Fixed: Could not find PortalPage with portalPageId []
(OFBIZ-13071)
9ec6a618bc is described below
commit 9ec6a618bc4dfac5fc2b7031d6c7805a4900b775
Author: Jacques Le Roux <[email protected]>
AuthorDate: Wed May 1 15:49:00 2024 +0200
Fixed: Could not find PortalPage with portalPageId [] (OFBIZ-13071)
Fixes a bug put in during backporting. MODULE is not used in this class
module is
---
.../src/main/java/org/apache/ofbiz/widget/model/ModelScreenWidget.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ModelScreenWidget.java
b/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ModelScreenWidget.java
index 2486d9c97d..9850f763ca 100644
---
a/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ModelScreenWidget.java
+++
b/framework/widget/src/main/java/org/apache/ofbiz/widget/model/ModelScreenWidget.java
@@ -2014,7 +2014,7 @@ public abstract class ModelScreenWidget extends
ModelWidget {
}
} else {
String errMsg = "Error rendering PortalPage, it's null";
- Debug.logError(errMsg, MODULE);
+ Debug.logError(errMsg, module);
}
}