sniper          Sat Apr 23 16:34:15 2005 EDT

  Modified files:              (Branch: PHP_4_3)
    /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.1247.2.883&r2=1.1247.2.884&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.883 php-src/NEWS:1.1247.2.884
--- php-src/NEWS:1.1247.2.883   Thu Apr 21 10:47:13 2005
+++ php-src/NEWS        Sat Apr 23 16:34:14 2005
@@ -27,6 +27,7 @@
   (Uwe Schindler)
 - Fixed bug #32311 (mb_encode_mimeheader() does not properly escape 
characters).
   (Moriyoshi)
+- 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 #31583 (php_std_date() uses short day names in non-y2k_compliance 
mode).
http://cvs.php.net/diff.php/php-src/main/php_variables.c?r1=1.45.2.8&r2=1.45.2.9&ty=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.45.2.8 
php-src/main/php_variables.c:1.45.2.9
--- php-src/main/php_variables.c:1.45.2.8       Mon Oct 18 11:08:46 2004
+++ php-src/main/php_variables.c        Sat Apr 23 16:34:15 2005
@@ -16,7 +16,7 @@
    |          Zeev Suraski <[EMAIL PROTECTED]>                                |
    +----------------------------------------------------------------------+
  */
-/* $Id: php_variables.c,v 1.45.2.8 2004/10/18 15:08:46 tony2001 Exp $ */
+/* $Id: php_variables.c,v 1.45.2.9 2005/04/23 20:34:15 sniper Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -290,7 +290,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