Changes with Apache 2.0.49
+ *) mod_usertrack no longer inspects the Cookie2 header for
+ the cookie name. PR 11475. [Chris Darrochi <chrisd pearsoncmg.com>]
+
*) mod_usertrack no longer overwrites other cookies.
PR 26002. [Scott Moore <apache nopdesign.com>]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/01/29 21:30:48 $]
+Last modified at [$Date: 2004/01/29 21:38:22 $]
Release:
modules/experimental/cache_cache.c r1.5
+1: jwoolley, bnicholes, rederpj
- * mod_usertrack: Use always the Cookie header to determine
- the cookie name (2.0 + 1.3). PR 11475.
- modules/metadata/mod_usertrack.c: r1.45
- +1: nd, trawick, jorton
-
* mod_auth_digest: Allow sub-requests with different methods than the
original request. PR 25040.
modules/aaa/mod_auth_digest.c: r1.82
return DECLINED;
}
- if ((cookie_header = apr_table_get(r->headers_in,
- (dcfg->style == CT_COOKIE2
- ? "Cookie2"
- : "Cookie")))) {
+ if ((cookie_header = apr_table_get(r->headers_in, "Cookie"))) {
if (!ap_regexec(dcfg->regexp, cookie_header, NUM_SUBS, regm, 0)) {
char *cookieval = NULL;
/* Our regexp,