Author: ashish
Date: Wed Feb 25 07:44:56 2009
New Revision: 747696
URL:
http://svn.apache.org/viewvc?rev=747696&view=revLog:
Applied patch from Ashish Nagar (OFBIZ-2209). Fix Typo.
Modified:
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/OnePageCheckoutProcess.ftl
Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/OnePageCheckoutProcess.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/OnePageCheckoutProcess.ftl?rev=747696&r1=747695&r2=747696&view=diff==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/OnePageCheckoutProcess.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/OnePageCheckoutProcess.ftl Wed Feb 25 07:44:56 2009
@@ -55,7 +55,7 @@
<#assign parentProductId = cartLine.getProductId()/>
</#if>
<#assign smallImageUrl = Static["org.ofbiz.product.product.ProductContentWrapper"].getProductContentAsText(cartLine.getProduct(), "SMALL_IMAGE_URL", locale, dispatcher)?if_exists>
- <#if !smallImageUr?string?has_content><#assign smallImageUrl = ""></#if>
+ <#if !smallImageUrl?string?has_content><#assign smallImageUrl = ""></#if>
</#if>
<tr id="cartItemDisplayRow_${cartLineIndex}">
<td><div><img src="<@ofbizContentUrl>${requestAttributes.contentPathPrefix?if_exists}${smallImageUrl}</@ofbizContentUrl>" align="center" height="20" hspace="0" vspace="0" width="20"></div></td>
@@ -133,8 +133,8 @@
<#assign parentProductId = cartLine.getProductId()/>
</#if>
<#assign smallImageUrl = Static["org.ofbiz.product.product.ProductContentWrapper"].getProductContentAsText(cartLine.getProduct(), "SMALL_IMAGE_URL", locale, dispatcher)?if_exists>
- <#if !smallImageUr?string?has_content><#assign smallImageUrl = ""></#if>
- <#if smallImageUr?string?has_content>
+ <#if !smallImageUrl?string?has_content><#assign smallImageUrl = ""></#if>
+ <#if smallImageUrl?string?has_content>
<img src="<@ofbizContentUrl>${requestAttributes.contentPathPrefix?if_exists}${smallImageUrl}</@ofbizContentUrl>" border="0" height="50" hspace="0" vspace="0" width="50"/>
</#if>
</#if>