summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-12-06 20:16:26 +0100
committerEike Rathke <erack@redhat.com>2011-12-07 17:19:48 +0100
commit269f71419247b152e6216e49d9a7d1e1e3a940b7 (patch)
treefae5bd0ae9a6f92fc3b2bf442abe36bd14fcfe4f
parenta351295596cdf00e76321a2a4709d4bdbaa6ffe4 (diff)
Copy <value><it> constructs intact.
-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>