summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-07-18 04:04:18 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-07-18 04:04:18 +0000
commit75e6dd1c61bc2518764319f3e4acf94919fe2f9e (patch)
tree2d341b22f51262a1d4450b477fdec47acd272e9f /main/php_variables.c
parent8cea6123e9ac5ef352f3241737fbfcf63c06a1b7 (diff)
downloadphp-git-75e6dd1c61bc2518764319f3e4acf94919fe2f9e.tar.gz
Fixed handling of HTTP requests with multiple Cookie headers.
Diffstat (limited to 'main/php_variables.c')
-rw-r--r--main/php_variables.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c
index b468c51df0..d2336345e7 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -317,7 +317,8 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)
separator = (char *) estrdup(PG(arg_separator).input);
break;
case PARSE_COOKIE:
- separator = ";\0";
+ /* The , and space are needed for instances when there are multiple Cookie: headers */
+ separator = ";, \0";
break;
}