Author: jleroux
Date: Sat Oct 24 17:38:19 2009
New Revision: 829416
URL:
http://svn.apache.org/viewvc?rev=829416&view=revLog:
Fix a "bug" : HTML code was shown as is and not as an URL text
Modified:
ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/promoText.ftl
Modified: ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/promoText.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/promoText.ftl?rev=829416&r1=829415&r2=829416&view=diff==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/promoText.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/promoText.ftl Sat Oct 24 17:38:19 2009
@@ -27,7 +27,7 @@
<#list productPromos as productPromo>
<tr>
<td>
- <div><a href="<@ofbizUrl>showPromotionDetails?productPromoId=${productPromo.productPromoId}</@ofbizUrl>" class="linktext">${uiLabelMap.CommonDetails}</a> ${productPromo.promoText?if_exists}</div>
+ <div><a href="<@ofbizUrl>showPromotionDetails?productPromoId=${productPromo.productPromoId}</@ofbizUrl>" class="linktext">${uiLabelMap.CommonDetails}</a> ${StringUtil.wrapString(productPromo.promoText?if_exists)}</div>
</td>
</tr>
<#if productPromo_has_next>