summaryrefslogtreecommitdiff
path: root/officecfg/util
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-03-24 16:04:08 +0100
committersb <sb@openoffice.org>2010-03-24 16:04:08 +0100
commit41b28993173f98f858a90fb7d8f259e24207ccbe (patch)
treece74a26be96cf8a64f7f7ca9402518f424e9e6b1 /officecfg/util
parent22cf34ac5ea7aea96b9f50078cb4b0874f031dd6 (diff)
sb121: #i110203# use <it> in Setup.xcu string-list values; pass it through XSLT scripts intact; handle it correctly in configmgr::ValueParser
Diffstat (limited to 'officecfg/util')
-rw-r--r--officecfg/util/alllang.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/officecfg/util/alllang.xsl b/officecfg/util/alllang.xsl
index 339c6685fa0e..dafb45c85c11 100644
--- a/officecfg/util/alllang.xsl
+++ b/officecfg/util/alllang.xsl
@@ -100,7 +100,7 @@
<xsl:if test="@xml:lang=$locale and not(@install:module)">
<xsl:copy>
<xsl:apply-templates select = "@*" mode="locale"/>
- <xsl:value-of select="."/>
+ <xsl:copy-of select="node()"/>
</xsl:copy>
</xsl:if>
</xsl:template>
@@ -275,7 +275,7 @@
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select = "@*"/>
- <xsl:value-of select="."/>
+ <xsl:copy-of select="node()"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
@@ -285,7 +285,7 @@
<xsl:if test="@xml:lang=$fallback-locale and not(@install:module)">
<xsl:copy>
<xsl:apply-templates select = "@*"/>
- <xsl:value-of select="."/>
+ <xsl:copy-of select="node()"/>
</xsl:copy>
</xsl:if>
</xsl:template>