From: foobar Date: Sat, 23 Apr 2005 20:33:34 +0000 (+0000) Subject: - Fixed bug #32111 (Cookies can also be separated by colon) X-Git-Tag: php-5.0.1b1~439 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=815aff1cafd4296993b8d366dbacdba08265b26e;p=php - Fixed bug #32111 (Cookies can also be separated by colon) --- diff --git a/main/php_variables.c b/main/php_variables.c index 1aad77c378..432c3df3fe 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -296,7 +296,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; }