From 1a6dd5e389dff4fcb06c16325ff5d89eac471e9c Mon Sep 17 00:00:00 2001
From: Ken Coar
Date: Mon, 31 Aug 1998 01:18:48 +0000
Subject: [PATCH] Clean up mod_autoindex's storage of the IndexOptions
settings. They are per-directory, not per-filename, so keeping them in
an array is confusing and pointless. They're now stored in an int in
the module config record. Also (finally!) fix the FancyIndexing
directive so it gets merged into any IndexOptions settings for the
current directory, rather than replacing them.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@81972 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/mod_autoindex.html | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html
index 2dc71e5411..8f0bb3eecd 100644
--- a/docs/manual/mod/mod_autoindex.html
+++ b/docs/manual/mod/mod_autoindex.html
@@ -373,10 +373,14 @@ The FancyIndexing directive sets the FancyIndexing option for a directory.
preference.
- Note that the FancyIndexing and
+ Note that in versions of Apache prior to 1.3.2, the
+ FancyIndexing and
IndexOptions directives will override each other. You
should use IndexOptions FancyIndexing in preference
- to the standalone FancyIndexing directive.
+ to the standalone FancyIndexing directive.
+ As of Apache 1.3.2, a standalone FancyIndexing directive
+ is combined with any IndexOptions directive already
+ specified for the current scope.
--
2.50.1