Author: lektran
Date: Thu Aug 13 11:36:56 2009
New Revision: 803848
URL:
http://svn.apache.org/viewvc?rev=803848&view=revLog:
Fixed double encoding problem reported by Jacopo on the dev list
Modified:
ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl
Modified: ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl?rev=803848&r1=803847&r2=803848&view=diff==============================================================================
--- ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl (original)
+++ ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl Thu Aug 13 11:36:56 2009
@@ -33,7 +33,7 @@
<#assign foStyle = foStyles[style]?default("")/>
${foStyle?default("")}
</#macro>
-<#macro makeBlock style text><fo:block<#if style?has_content> <@getFoStyle style/></#if>><#if text?exists>${text?xml}</#if></fo:block></#macro>
+<#macro makeBlock style text><fo:block<#if style?has_content> <@getFoStyle style/></#if>><#if text?exists>${text}</#if></fo:block></#macro>
<#macro renderField text><#if text?exists>${text}</#if></#macro>