Author: ashish
Date: Thu Feb 26 11:42:16 2009
New Revision: 748100
URL:
http://svn.apache.org/viewvc?rev=748100&view=revLog:
Applied patch from Ashish Nagar (OFBIZ-2211). Fixed typo.
Modified:
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/showcart.ftl
Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/showcart.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/showcart.ftl?rev=748100&r1=748099&r2=748100&view=diff==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/showcart.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/showcart.ftl Thu Feb 26 11:42:16 2009
@@ -216,8 +216,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 = "/images/defaultImage.jpg"></#if>
- <#if smallImageUr?string?has_content>
+ <#if !smallImageUrl?string?has_content><#assign smallImageUrl = "/images/defaultImage.jpg"></#if>
+ <#if smallImageUrl?string?has_content>
<a href="<@ofbizUrl>product?product_id=${parentProductId}</@ofbizUrl>">
<img src="<@ofbizContentUrl>${requestAttributes.contentPathPrefix?if_exists}${smallImageUrl}</@ofbizContentUrl>" width="50" class="imageborder" border="0"/>
</a>