From: Allan K. Edwards Date: Wed, 5 Apr 2000 19:24:46 +0000 (+0000) Subject: Get mod_negotiation working. We may ultimately need finer granularity X-Git-Tag: apache-doc-split-01~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f2baafe2dc44d7a444295fdaf8ad32a28f1eacc;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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 =