Author: jleroux
Date: Sun Aug 1 19:36:40 2010
New Revision: 981288
URL:
http://svn.apache.org/viewvc?rev=981288&view=revLog:
Fix a bug reported by Ruth " eCommerce checkout -> Edit Contact Information -> Save -> Go Back does not return user to checkout" (
https://issues.apache.org/jira/browse/OFBIZ-3432) - OFBIZ-3432
Mostly to test the change I just did in mergefromtrunk.bat. Else I'd like to fix also the way the options are shown when using the std checkout (far below, very bad for newcomers). But I have not enough faith, at least today...
I tested enough, and this should not not introduce any side-effects.
Modified:
ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml?rev=981288&r1=981287&r2=981288&view=diff==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Sun Aug 1 19:36:40 2010
@@ -588,7 +588,7 @@ under the License.
<request-map uri="checkoutoptions">
<security https="true" auth="true"/>
<event type="java" path="org.ofbiz.order.shoppingcart.CheckOutEvents" invoke="setCheckOutPages"/>
- <response name="shippingaddress" type="view" value="checkoutshippingaddress"/>
+ <response name="shippingaddress" type="view" value="checkoutshippingaddress" save-current-view="true"/>
<response name="shippingoptions" type="request" value="setOrderCurrencyAgreementShipDates"/>
<response name="payment" type="request" value="setPoNumber"/>
<response name="confirm" type="request" value="calcShipping"/>
@@ -994,7 +994,7 @@ under the License.
</request-map>
<!-- ContactMech Requests -->
- <request-map uri="editcontactmech"><security https="true" auth="true"/><response name="success" type="view" value="editcontactmech" save-last-view="true"/></request-map>
+ <request-map uri="editcontactmech"><security https="true" auth="true"/><response name="success" type="view" value="editcontactmech"/></request-map>
<request-map uri="editcontactmechnosave"><security https="true" auth="true"/><response name="success" type="view" value="editcontactmech"/></request-map>
<request-map uri="editcontactmechdone"><security https="true" auth="true"/><response name="success" type="view-last" value="editcontactmech"/></request-map>