You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by mo...@apache.org on 2009/12/08 14:04:41 UTC

svn commit: r888386 - /ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl

Author: mor
Date: Tue Dec  8 13:04:40 2009
New Revision: 888386

URL: http://svn.apache.org/viewvc?rev=888386&view=rev
Log:
Applied fix (manually) from trunk for revision: 888381

Removed assignment operator from the value being saved.

Modified:
    ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl

Modified: ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl?rev=888386&r1=888385&r2=888386&view=diff
==============================================================================
--- ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl (original)
+++ ofbiz/branches/release09.04/specialpurpose/ecommerce/webapp/ecommerce/customer/viewprofile.ftl Tue Dec  8 13:04:40 2009
@@ -331,7 +331,7 @@
                         <#else>
                           <form name="defaultPaymentMethodForm" method="post" action="<@o...@ofbizUrl>">
                             <input type="hidden" name="productStoreId" value="${productStoreId}" />
-                            <input type="hidden" name="defaultPayMeth" value="=${paymentMethod.paymentMethodId}" />
+                            <input type="hidden" name="defaultPayMeth" value="${paymentMethod.paymentMethodId}" />
                             <input type="hidden" name="partyId" value="${party.partyId}" />
                             <input type="submit" value="${uiLabelMap.EcommerceSetDefault}" class="button" />                          
                           </form>