Author: jleroux
Date: Fri Dec 7 13:16:58 2018 New Revision: 1848400 URL: http://svn.apache.org/viewvc?rev=1848400&view=rev Log: "Applied fix from plugins for revision: 1848398 " ------------------------------------------------------------------------ r1848398 | jleroux | 2018-12-07 14:14:48 +0100 (ven. 07 déc. 2018) | 17 lignes Fixed: User's name is displayed on ecommerce even after user logs out (OFBIZ-10666) Steps to regenerate: Open URL: https://demo-trunk.ofbiz.apache.org/ecommerce/control/main. Welcome is displayed and user's name is not displayed when URL is opened. Login at ecommerce, username will be displayed after user logs in. Logout of ecommerce by clicking on logout. User will be logged out and login link will be displayed in place of logout link, but the name of user is still displayed. Actual: Username is still displayed after user logs out Expected: Username should not be displayed after the user logs out Note: Similar issue also exists when the user clicks on (Not You?) link. Thanks: Arpit Mor for detailled report, Deepak Dixit for discussion ------------------------------------------------------------------------ Modified: ofbiz/ofbiz-plugins/branches/release17.12/ (props changed) ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Propchange: ofbiz/ofbiz-plugins/branches/release17.12/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Fri Dec 7 13:16:58 2018 @@ -11,4 +11,4 @@ /ofbiz/branches/multitenant20100310/plugins:921280-927264 /ofbiz/branches/release13.07/plugins:1547657 /ofbiz/ofbiz-framework/trunk:1836107 -/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845,1837857,1838249,1838381,1838816,1841650,1845558,1847272,1847346,1847398,1847528,1847530,1848009 +/ofbiz/ofbiz-plugins/trunk:1819576,1819580,1819582,1819589,1820962,1820973,1821045,1821049,1821051,1822129,1822133,1822139,1822143,1822145,1822389,1822391,1822395,1824646,1824648,1824650,1824654,1828569,1830856,1831084,1832727,1832800,1837796,1837845,1837857,1838249,1838381,1838816,1841650,1845558,1847272,1847346,1847398,1847528,1847530,1848009,1848396,1848398 Modified: ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/controller.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/controller.xml?rev=1848400&r1=1848399&r2=1848400&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/controller.xml (original) +++ ofbiz/ofbiz-plugins/branches/release17.12/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Fri Dec 7 13:16:58 2018 @@ -54,6 +54,7 @@ under the License. <event name="checkTrackingCodeUrlParam" type="java" path="org.apache.ofbiz.marketing.tracking.TrackingCodeEvents" invoke="checkTrackingCodeUrlParam"/> <event name="checkPartnerTrackingCodeUrlParam" type="java" path="org.apache.ofbiz.marketing.tracking.TrackingCodeEvents" invoke="checkPartnerTrackingCodeUrlParam"/> <event name="keepCartUpdated" type="java" path="org.apache.ofbiz.order.shoppingcart.ShoppingCartEvents" invoke="keepCartUpdated"/> + <event name="autoLoginCheck" type="java" path="org.apache.ofbiz.webapp.control.LoginWorker" invoke="autoLoginCheck"/> </preprocessor> <!-- Events to run on every request after all other processing (chains exempt) --> @@ -93,7 +94,7 @@ under the License. </request-map> <request-map uri="logout"> <security https="true" auth="true"/> - <event type="java" path="org.apache.ofbiz.webapp.control.LoginWorker" invoke="logout"/> + <event type="java" path="org.apache.ofbiz.webapp.control.LoginWorker" invoke="autoLoginRemove"/> <response name="success" type="request-redirect-noparam" value="main"/> <response name="error" type="view" value="main"/> </request-map> |
Free forum by Nabble | Edit this page |