]> granicus.if.org Git - php/commitdiff
MFH: - Fixed bug #32111 (Cookies can also be separated by colon)
authorfoobar <sniper@php.net>
Sat, 23 Apr 2005 20:34:23 +0000 (20:34 +0000)
committerfoobar <sniper@php.net>
Sat, 23 Apr 2005 20:34:23 +0000 (20:34 +0000)
NEWS
main/php_variables.c

diff --git a/NEWS b/NEWS
index ab4999896708d8b66714a51857073ade8990340a..d473cc5ea885aba8aa8b3a7dce7eb7a3ea4ef39e 100644 (file)
--- 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)
index 85628ea7d8454e3eff65c7624d0f8b680242967b..b3307a51d79cc68da5685dbb8e2cec82e6bb5076 100644 (file)
@@ -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;
        }