sniper          Sat Apr 23 16:33:35 2005 EDT

  Modified files:              
    /php-src/main       php_variables.c 
  Log:
  - Fixed bug #32111 (Cookies can also be separated by colon)
  
http://cvs.php.net/diff.php/php-src/main/php_variables.c?r1=1.89&r2=1.90&ty=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.89 php-src/main/php_variables.c:1.90
--- php-src/main/php_variables.c:1.89   Sat Apr 23 15:30:29 2005
+++ php-src/main/php_variables.c        Sat Apr 23 16:33:34 2005
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: php_variables.c,v 1.89 2005/04/23 19:30:29 sniper Exp $ */
+/* $Id: php_variables.c,v 1.90 2005/04/23 20:33:34 sniper Exp $ */
 
 #include <stdio.h>
 #include "php.h"
@@ -296,7 +296,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