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 2012/03/25 16:42:52 UTC

svn commit: r1305053 - /ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js

Author: jleroux
Date: Sun Mar 25 14:42:51 2012
New Revision: 1305053

URL: http://svn.apache.org/viewvc?rev=1305053&view=rev
Log:
A patch from K Sharad Bhushan  "An issue on billing error messages display" https://issues.apache.org/jira/browse/OFBIZ-4736

Billing error messages are displayed in shipping address section, instead of billing address section

Just a element "id" change..

Modified:
    ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js

Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js?rev=1305053&r1=1305052&r2=1305053&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js Sun Mar 25 14:42:51 2012
@@ -403,7 +403,7 @@ function processBillingAndPayment() {
                     updateBillingSummary();
                     result = true;
                 } else {
-                    jQuery('#shippingFormServerError').html(serverError);
+                    jQuery('#billingFormServerError').html(serverError);
                     result = false;
                 }
         },