summaryrefslogtreecommitdiff
path: root/officecfg/util
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-12-06 20:16:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2011-12-06 20:28:54 +0100
commit7f92ed53b28d69ef2ae91006216c6ea24f3a5508 (patch)
tree2cd5855edc5486bada09439159dcf66583f7ef2c /officecfg/util
parent0d5b38240caf03323d9a180811653eb38eaf7f48 (diff)
Copy <value><it> constructs intact.
Diffstat (limited to 'officecfg/util')
-rwxr-xr-xofficecfg/util/schema_trim.xsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/officecfg/util/schema_trim.xsl b/officecfg/util/schema_trim.xsl
index 6d58e97cccce..fce8b3895804 100755
--- a/officecfg/util/schema_trim.xsl
+++ b/officecfg/util/schema_trim.xsl
@@ -77,8 +77,8 @@
<!-- copy all other values with content -->
<xsl:template match="value">
<xsl:copy>
- <xsl:apply-templates select="*|@*"/>
- <xsl:value-of select="."/>
+ <xsl:apply-templates select="@*"/>
+ <xsl:copy-of select="node()"/>
</xsl:copy>
</xsl:template>