- Fixed bug #32111 (Cookies can also be separated by colon)

This commit is contained in:
foobar 2005-04-23 20:33:34 +00:00
parent e642d180f6
commit 815aff1caf

View file

@ -296,7 +296,7 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)
separator = (char *) estrdup(PG(arg_separator).input); separator = (char *) estrdup(PG(arg_separator).input);
break; break;
case PARSE_COOKIE: case PARSE_COOKIE:
separator = ";\0"; separator = ";,\0"; /* Cookies can be separated with , or ; */
break; break;
} }