]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Get mod_negotiation working. We may ultimately need finer granularity
authorAllan K. Edwards <ake@apache.org>
Wed, 5 Apr 2000 19:24:46 +0000 (19:24 +0000)
committerAllan K. Edwards <ake@apache.org>
Wed, 5 Apr 2000 19:24:46 +0000 (19:24 +0000)
of type_checker hook ordering, but this will get MultiViews working for now.

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

modules/mappers/mod_negotiation.c

index b34b65b5eba1342255c4ca8b544e8083bd9cec3a..0ba21c5013830c299eda4f968e3943337b7c4407 100644 (file)
@@ -2740,7 +2740,7 @@ static const handler_rec negotiation_handlers[] =
 static void register_hooks(void)
 {
     ap_hook_fixups(fix_encoding,NULL,NULL,HOOK_MIDDLE);
-    ap_hook_type_checker(handle_multi,NULL,NULL,HOOK_MIDDLE);
+    ap_hook_type_checker(handle_multi,NULL,NULL,HOOK_FIRST);
 }
 
 module MODULE_VAR_EXPORT negotiation_module =