diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-21 10:31:57 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:23 -0500 |
commit | 8ee9f6806b3cd2519d3a4afe4b254689b2006325 (patch) | |
tree | dc6586aaf11456e0d9a6b8705b33a394ee926a09 /docs/xslt | |
parent | 995aeb00afcc37f2b42fc41f7998264664c3c1c7 (diff) | |
download | samba-8ee9f6806b3cd2519d3a4afe4b254689b2006325.tar.gz samba-8ee9f6806b3cd2519d3a4afe4b254689b2006325.tar.bz2 samba-8ee9f6806b3cd2519d3a4afe4b254689b2006325.zip |
Fix smbconfsection output
(This used to be commit 60ce39300d498bc5b14da534658f9f26c61c72b2)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/expand-sambadoc.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/xslt/expand-sambadoc.xsl b/docs/xslt/expand-sambadoc.xsl index 6633f34887..f74d14c66b 100644 --- a/docs/xslt/expand-sambadoc.xsl +++ b/docs/xslt/expand-sambadoc.xsl @@ -113,7 +113,7 @@ </xsl:element> <xsl:element name="member"> <xsl:element name="parameter"> - <xsl:apply-templates/> + <xsl:value-of select="@name"/> </xsl:element> </xsl:element> </xsl:template> @@ -201,7 +201,7 @@ <xsl:template match="smbconfsection"> <xsl:element name="parameter"> - <xsl:apply-templates/> + <xsl:value-of select="@name"/> </xsl:element> </xsl:template> |