summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-04-23 20:34:23 +0000
committerfoobar <sniper@php.net>2005-04-23 20:34:23 +0000
commit86e161007c83b833cf1eeb353dc64356faf85208 (patch)
tree589450f16e569e754d65b2d7fde4ba7a64429b82 /main/php_variables.c
parent5fa11c0579d177ce9c05e8ca74aaa16c429b75d8 (diff)
downloadphp-git-86e161007c83b833cf1eeb353dc64356faf85208.tar.gz
MFH: - 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 85628ea7d8..b3307a51d7 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -301,7 +301,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;
}