Commit 08d2b444 authored by Allan K. Edwards's avatar Allan K. Edwards
Browse files

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
parent 5f2d7036
Loading
Loading
Loading
Loading
+1 −1
Changes for modules/mappers/mod_negotiation.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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 =