techtonik Tue Nov 2 08:19:12 2004 EDT
Modified files:
/phpdoc/xsl common.xsl
Log:
replace copy-of with value-of in methodname template
http://cvs.php.net/diff.php/phpdoc/xsl/common.xsl?r1=1.16&r2=1.17&ty=u
Index: phpdoc/xsl/common.xsl
diff -u phpdoc/xsl/common.xsl:1.16 phpdoc/xsl/common.xsl:1.17
--- phpdoc/xsl/common.xsl:1.16 Mon Nov 1 16:27:53 2004
+++ phpdoc/xsl/common.xsl Tue Nov 2 08:19:10 2004
@@ -3,7 +3,7 @@
common.xsl: Common customizations for all HTML formats
- $Id: common.xsl,v 1.16 2004/11/01 21:27:53 techtonik Exp $
+ $Id: common.xsl,v 1.17 2004/11/02 13:19:10 techtonik Exp $
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
@@ -33,7 +33,7 @@
<xsl:param name="version" select="document('version.xml')/versions"/>
<!-- Add version information below function name. Use H1 tags to denote
- function title like in DSSSL -->
+ function title like in DSSSL -->
<xsl:template match="refnamediv">
<div class="{name(.)}">
<xsl:call-template name="anchor"/>
@@ -100,7 +100,7 @@
<xsl:template match="methodsynopsis/methodname">
<b class="{local-name(.)}">
- <xsl:copy-of select="."/>
+ <xsl:value-of select="."/>
</b>
</xsl:template>