svn commit: r803848 - /ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r803848 - /ofbiz/trunk/framework/widget/templates/foFormMacroLibrary.ftl

lektran
Author: lektran
Date: Thu Aug 13 11:36:56 2009
New Revision: 803848

URL: http://svn.apache.org/viewvc?rev=803848&view=rev
Log:
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>