techtonik Wed Nov 3 02:18:50 2004 EDT
Modified files: /phpdoc/xsl common.xsl Log: proper <function> rendering in ToC http://cvs.php.net/diff.php/phpdoc/xsl/common.xsl?r1=1.18&r2=1.19&ty=u Index: phpdoc/xsl/common.xsl diff -u phpdoc/xsl/common.xsl:1.18 phpdoc/xsl/common.xsl:1.19 --- phpdoc/xsl/common.xsl:1.18 Tue Nov 2 14:03:53 2004 +++ phpdoc/xsl/common.xsl Wed Nov 3 02:18:48 2004 @@ -3,7 +3,7 @@ common.xsl: Common customizations for all HTML formats - $Id: common.xsl,v 1.18 2004/11/02 19:03:53 techtonik Exp $ + $Id: common.xsl,v 1.19 2004/11/03 07:18:48 techtonik Exp $ --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" @@ -355,5 +355,10 @@ </xsl:choose> </xsl:template> +<!-- Do not add markup to FUNCTION when operating in no.anchor.mode (e.g. ToC) --> +<xsl:template match="function" mode="no.anchor.mode"> + <xsl:apply-templates/> +</xsl:template> + </xsl:stylesheet>