]> granicus.if.org Git - apache/commitdiff
fix redirects for directories. fixup_dir was munging the URI before other
authorGreg Ames <gregames@apache.org>
Thu, 31 Jan 2002 19:54:53 +0000 (19:54 +0000)
committerGreg Ames <gregames@apache.org>
Thu, 31 Jan 2002 19:54:53 +0000 (19:54 +0000)
fixup hooks (such as fixup_redir in mod_alias) had a chance to redirect
the original directory URI.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93141 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/mappers/mod_dir.c

diff --git a/STATUS b/STATUS
index 99977481800684ccaa67f38978389f131f69811f..e2ef3f5ce0c5355adec4a1027b389027402a6bc3 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                             -*-text-*-
-Last modified at [$Date: 2002/01/31 18:15:09 $]
+Last modified at [$Date: 2002/01/31 19:54:53 $]
 
 Release:
 
@@ -104,9 +104,6 @@ RELEASE SHOWSTOPPERS:
       apr-util, etc.
         Message-ID: <20020116000226.GA15991@ebuilt.com>
 
-    * Redirected autoindex requests no longer work. Example:
-      http://jakarta.apache.org/builds/tomcat/  mod_dir is a suspect.
-
     * mod_alias redirections are issuing invalid Location:
       response header fields (they're not absoluteURI values).
 
index e0add495424c67d3e884d7478729d5b3229c1331..9c1ec8cc736c2abf0a73ac4e0f714b30befc831d 100644 (file)
@@ -246,7 +246,7 @@ static int fixup_dir(request_rec *r)
 
 static void register_hooks(apr_pool_t *p)
 {
-    ap_hook_fixups(fixup_dir,NULL,NULL,APR_HOOK_MIDDLE);
+    ap_hook_fixups(fixup_dir,NULL,NULL,APR_HOOK_LAST);
 }
 
 module AP_MODULE_DECLARE_DATA dir_module = {