mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
CSV import: do not add quote to single word
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
d3239aed0f
commit
3f5b5f7b3e
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@
|
|||
|
||||
<xsl:choose>
|
||||
<xsl:when test="substring-before($field, '"') = ''">
|
||||
<xsl:value-of select="concat($value, '"', $field)" />
|
||||
<xsl:value-of select="concat($value, $quote, $field)" />
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="unquote">
|
||||
|
|
Loading…
Reference in a new issue