mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Fixed bug #32111 (Cookies can also be separated by colon)
This commit is contained in:
parent
e642d180f6
commit
815aff1caf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue