diff options
author | Joshua Slive <slive@apache.org> | 2002-05-09 18:12:06 +0200 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2002-05-09 18:12:06 +0200 |
commit | 58912e6abbce28922ba108367673e7c44b331faf (patch) | |
tree | d765bff6983d2a52ddb91b9db4f0989fee4cb632 /docs | |
parent | Fix a mod_ssl build problem on OS/390. (diff) | |
download | apache2-58912e6abbce28922ba108367673e7c44b331faf.tar.xz apache2-58912e6abbce28922ba108367673e7c44b331faf.zip |
A few directives where missing from the index because of some obscure xslt
thing that I don't really understand ;-)
PR: 8938
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95017 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/style/manual.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/style/manual.xsl b/docs/manual/style/manual.xsl index 76954628a1..265cd6f800 100644 --- a/docs/manual/style/manual.xsl +++ b/docs/manual/style/manual.xsl @@ -88,7 +88,7 @@ <ul> <xsl:for-each select="document(modulefilelist/modulefile)/modulesynopsis/directivesynopsis"> <xsl:sort select="name"/> - <xsl:if test="not(/modulesynopsis/directivesynopsis/@location)"> + <xsl:if test="not(@location)"> <li><a href="{/modulesynopsis/name}.html#{translate(name,$uppercase,$lowercase)}"><xsl:value-of select="name"/></a></li> </xsl:if> </xsl:for-each> |