]> granicus.if.org Git - php/commitdiff
Revert cookie patch for BC reasons.
authorIlia Alshanetsky <iliaa@php.net>
Mon, 18 Jul 2005 19:18:03 +0000 (19:18 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Mon, 18 Jul 2005 19:18:03 +0000 (19:18 +0000)
NEWS
main/php_variables.c

diff --git a/NEWS b/NEWS
index 7dbfdf27ce33b6363c8fe006867c948541c6f4c8..1554ab503b9cea01965b4c119c391a44bdbf3d19 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,6 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2005, PHP 5.1
-- Fixed handling of HTTP requests with multiple Cookie headers. (Ilia)
 - Fixed bug #33558 (warning with nested calls to functions returning by
   reference). (Dmitry)
 
index d2336345e7186315a3c0787fa53045cf526f633c..b468c51df04ddf6122730daeee80076775f46b11 100644 (file)
@@ -317,8 +317,7 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)
                        separator = (char *) estrdup(PG(arg_separator).input);
                        break;
                case PARSE_COOKIE:
-                       /* The , and space are needed for instances when there are multiple Cookie: headers */
-                       separator = ";, \0";
+                       separator = ";\0";
                        break;
        }