summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-04-23 20:33:34 +0000
committerfoobar <sniper@php.net>2005-04-23 20:33:34 +0000
commit815aff1cafd4296993b8d366dbacdba08265b26e (patch)
tree989b65907d5bf01eea0aac1664799c235a945dc9 /main/php_variables.c
parente642d180f682a212d3898a9aab6f297a1447737c (diff)
downloadphp-git-815aff1cafd4296993b8d366dbacdba08265b26e.tar.gz
- Fixed bug #32111 (Cookies can also be separated by colon)
Diffstat (limited to 'main/php_variables.c')
-rw-r--r--main/php_variables.c2
1 files changed, 1 insertions, 1 deletions
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;
}