sniper          Sat Apr 23 16:34:23 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src    NEWS 
    /php-src/main       php_variables.c 
  Log:
  MFH: - Fixed bug #32111 (Cookies can also be separated by colon)
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.338&r2=1.1760.2.339&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.338 php-src/NEWS:1.1760.2.339
--- php-src/NEWS:1.1760.2.338   Thu Apr 21 10:46:03 2005
+++ php-src/NEWS        Sat Apr 23 16:34:23 2005
@@ -36,6 +36,7 @@
 - Fixed bug #32405 (mysqli::fetch() returns bad data - 64bit problem). (Andrey)
 - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit). (Georg)
 - Fixed bug #32282 (Segfault in mysqli_fetch_array on 64-bit) (Georg).
+- Fixed bug #32111 (Cookies can also be separated by colon). (Jani)
 - Fixed bug #31887 (ISAPI: Custom 5xx error does not return correct HTTP 
   response message). (Jani)
 - Fixed bug #31636 (another crash when echoing a COM object). (Wez)
http://cvs.php.net/diff.php/php-src/main/php_variables.c?r1=1.81.2.4&r2=1.81.2.5&ty=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.81.2.4 
php-src/main/php_variables.c:1.81.2.5
--- php-src/main/php_variables.c:1.81.2.4       Sun Apr  3 07:55:44 2005
+++ php-src/main/php_variables.c        Sat Apr 23 16:34:23 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_variables.c,v 1.81.2.4 2005/04/03 11:55:44 tony2001 Exp $ */
+/* $Id: php_variables.c,v 1.81.2.5 2005/04/23 20:34:23 sniper Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -301,7 +301,7 @@
                        separator = (char *) estrdup(PG(arg_separator).input);
                        break;
                case PARSE_COOKIE:
-                       separator = ";\0";
+                       separator = ";,\0"; /* Cookies can be separated with , 
or ; */
                        break;
        }
        

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to