CSV import: do not add quote to single word

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
Miika Turkia 2018-10-07 16:19:23 +03:00 committed by Dirk Hohndel
parent d3239aed0f
commit 3f5b5f7b3e

View file

@ -303,7 +303,7 @@
<xsl:choose>
<xsl:when test="substring-before($field, '&quot;') = ''">
<xsl:value-of select="concat($value, '&quot;', $field)" />
<xsl:value-of select="concat($value, $quote, $field)" />
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="unquote">