You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2009/08/30 08:17:06 UTC

svn commit: r809249 - /ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl

Author: jacopoc
Date: Sun Aug 30 06:17:06 2009
New Revision: 809249

URL: http://svn.apache.org/viewvc?rev=809249&view=rev
Log:
Based on feedback from Scott Gray, removed space between fields separated by commas in CSV exports: it was causing values with quoted texts in fields imported in Excel.

Modified:
    ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl

Modified: ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl?rev=809249&r1=809248&r2=809249&view=diff
==============================================================================
--- ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl (original)
+++ ofbiz/trunk/framework/widget/templates/csvFormMacroLibrary.ftl Sun Aug 30 06:17:06 2009
@@ -20,7 +20,7 @@
 <#macro renderField text><#if text?exists>${text?replace(",", "")}</#if></#macro>
 
 <#macro renderDisplayField idName description class alert inPlaceEditorId="" inPlaceEditorUrl="" inPlaceEditorParams="">
-<@renderField description />, <#rt/>
+<@renderField description />,<#rt/>
 </#macro>
 <#macro renderHyperlinkField></#macro>