From 6f2baafe2dc44d7a444295fdaf8ad32a28f1eacc Mon Sep 17 00:00:00 2001 From: "Allan K. Edwards" Date: Wed, 5 Apr 2000 19:24:46 +0000 Subject: [PATCH] Get mod_negotiation working. We may ultimately need finer granularity 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index b34b65b5eba..0ba21c50138 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -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 = -- 2.47.2