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 075fce1d65 Fixed: Could not find PortalPage with portalPageId [] 
(OFBIZ-13071)
075fce1d65 is described below

commit 075fce1d652db3d0d8b8e6b2e07ec74cdb4659a3
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Fri Apr 26 11:32:27 2024 +0200

    Fixed: Could not find PortalPage with portalPageId [] (OFBIZ-13071)
    
    Avoids spider bots to clutter the logs by forcing auth. Does not make sense
    W/o anyway
---
 framework/common/webcommon/WEB-INF/common-controller.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/framework/common/webcommon/WEB-INF/common-controller.xml 
b/framework/common/webcommon/WEB-INF/common-controller.xml
index 1fd4680276..70c0ec4ebe 100644
--- a/framework/common/webcommon/WEB-INF/common-controller.xml
+++ b/framework/common/webcommon/WEB-INF/common-controller.xml
@@ -114,7 +114,7 @@ under the License.
         <response name="success" type="view-last" value="main"/>
         <response name="error" type="request" value="main"/>
     </request-map>
-    <request-map uri="ListTimezones"><security https="true" 
auth="false"/><response name="success" type="view" value="ListTimezones" 
save-last-view="true"/></request-map>
+    <request-map uri="ListTimezones"><security https="true" 
auth="true"/><response name="success" type="view" value="ListTimezones" 
save-last-view="true"/></request-map>
     <request-map uri="setSessionTimeZone">
         <security https="true" auth="false"/>
         <event type="java" path="org.apache.ofbiz.common.CommonEvents" 
invoke="setSessionTimeZone"/>
@@ -233,7 +233,7 @@ under the License.
     <request-map uri="LookupGeo"><security https="true" auth="true"/><response 
name="success" type="view" value="LookupGeo"/></request-map>
     <request-map uri="LookupGeoName"><security https="true" 
auth="true"/><response name="success" type="view" 
value="LookupGeoName"/></request-map>
     <request-map uri="LookupLocale"><security https="true" 
auth="true"/><response name="success" type="view" 
value="LookupLocale"/></request-map>
-    
+
     <!--========================== AJAX events =====================-->
     <!-- Get states related to a country -->
     <request-map uri="getAssociatedStateList">

Reply via email to