We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec58143 commit e77c65fCopy full SHA for e77c65f
NEWS
@@ -1,7 +1,6 @@
1
PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? 2005, PHP 5.1
4
-- Fixed handling of HTTP requests with multiple Cookie headers. (Ilia)
5
- Fixed bug #33558 (warning with nested calls to functions returning by
6
reference). (Dmitry)
7
main/php_variables.c
@@ -317,8 +317,7 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)
317
separator = (char *) estrdup(PG(arg_separator).input);
318
break;
319
case PARSE_COOKIE:
320
- /* The , and space are needed for instances when there are multiple Cookie: headers */
321
- separator = ";, \0";
+ separator = ";\0";
322
323
}
324
0 commit comments