diff options
-rw-r--r-- | xslt/commonTemplates.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xslt/commonTemplates.xsl b/xslt/commonTemplates.xsl index 8a0957e0f..cd26f10ec 100644 --- a/xslt/commonTemplates.xsl +++ b/xslt/commonTemplates.xsl @@ -302,8 +302,8 @@ <xsl:choose> <xsl:when test="substring($line, 1, 1) = '"'"> <xsl:choose> - <xsl:when test="substring-before(substring-after($line, '"'), '"') != ''"> - <xsl:value-of select="substring-before(substring-after($line, '"'), '"')"/> + <xsl:when test="substring-before(substring-after($line, '"'), concat('"', $fs)) != ''"> + <xsl:value-of select="substring-before(substring-after($line, '"'), concat('"', $fs))"/> </xsl:when> <xsl:otherwise> <xsl:choose> |