From: foobar Date: Sat, 23 Apr 2005 20:34:23 +0000 (+0000) Subject: MFH: - Fixed bug #32111 (Cookies can also be separated by colon) X-Git-Tag: php-5.0.5RC1~390 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86e161007c83b833cf1eeb353dc64356faf85208;p=php MFH: - Fixed bug #32111 (Cookies can also be separated by colon) --- diff --git a/NEWS b/NEWS index ab49998967..d473cc5ea8 100644 --- a/NEWS +++ b/NEWS @@ -36,6 +36,7 @@ PHP NEWS - Fixed bug #32405 (mysqli::fetch() returns bad data - 64bit problem). (Andrey) - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg) - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit) (Georg). +- Fixed bug #32111 (Cookies can also be separated by colon). (Jani) - Fixed bug #31887 (ISAPI: Custom 5xx error does not return correct HTTP response message). (Jani) - Fixed bug #31636 (another crash when echoing a COM object). (Wez) diff --git a/main/php_variables.c b/main/php_variables.c index 85628ea7d8..b3307a51d7 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -301,7 +301,7 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data) separator = (char *) estrdup(PG(arg_separator).input); break; case PARSE_COOKIE: - separator = ";\0"; + separator = ";,\0"; /* Cookies can be separated with , or ; */ break; }