You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/08/12 10:56:17 UTC

svn commit: r685095 - /ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/PaymentInformation.groovy

Author: jleroux
Date: Tue Aug 12 01:56:17 2008
New Revision: 685095

URL: http://svn.apache.org/viewvc?rev=685095&view=rev
Log:
Fix an error reported in user ML

Modified:
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/PaymentInformation.groovy

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/PaymentInformation.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/PaymentInformation.groovy?rev=685095&r1=685094&r2=685095&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/PaymentInformation.groovy (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/PaymentInformation.groovy Tue Aug 12 01:56:17 2008
@@ -91,7 +91,7 @@
 }
 
 if(!parameters.useShipAddr){
-    if (cart && postalAddress) {
+    if (cart && context.postalAddress) {
         postalAddress = context.postalAddress;
         shippingContactMechId = cart.getShippingContactMechId();
         contactMechId = postalAddress.contactMechId;