]> granicus.if.org Git - apache/commitdiff
Just a simple switch of mod_usertrack to run earlier in the fixup hook.
authorPaul Querna <pquerna@apache.org>
Thu, 4 Nov 2004 03:30:58 +0000 (03:30 +0000)
committerPaul Querna <pquerna@apache.org>
Thu, 4 Nov 2004 03:30:58 +0000 (03:30 +0000)
PR: 29755

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

CHANGES
modules/metadata/mod_usertrack.c

diff --git a/CHANGES b/CHANGES
index 7833c01a609045a27713696a9e5385e1a1ee23bd..569c96718ce49ddf32d1fd4d8f19552e3b90f906 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) mod_usertrack: Run the fixups hook before other modules.
+     PR 29755. [Paul Querna]
+
   *) mod_authnz_ldap: Added the directive "Requires ldap-attribute" that
      allows the module to only authorize a user if the attribute value
      specified matches the value of the user object. PR 31913
index a70761799710994d0926448d046b6ad428fe075c..958ba6eaacc7f9aaf5b8be621cf9c241d1d87213 100644 (file)
@@ -438,7 +438,7 @@ static const command_rec cookie_log_cmds[] = {
 
 static void register_hooks(apr_pool_t *p)
 {
-    ap_hook_fixups(spot_cookie,NULL,NULL,APR_HOOK_MIDDLE);
+    ap_hook_fixups(spot_cookie,NULL,NULL,APR_HOOK_FIRST);
 }
 
 module AP_MODULE_DECLARE_DATA usertrack_module = {