diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-12-06 20:16:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-12-06 20:28:54 +0100 |
commit | 7f92ed53b28d69ef2ae91006216c6ea24f3a5508 (patch) | |
tree | 2cd5855edc5486bada09439159dcf66583f7ef2c /officecfg | |
parent | 0d5b38240caf03323d9a180811653eb38eaf7f48 (diff) |
Copy <value><it> constructs intact.
Diffstat (limited to 'officecfg')
-rwxr-xr-x | officecfg/util/schema_trim.xsl | 4 |
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> |