Author: mor
Date: Tue Dec 8 13:04:40 2009
New Revision: 888386
URL:
http://svn.apache.org/viewvc?rev=888386&view=revLog:
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="<@ofbizUrl>setprofiledefault/viewprofile</@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>