sniper Mon Apr 25 17:22:49 2005 EDT Modified files: (Branch: PHP_4_3) /php-src NEWS /php-src/main php_variables.c Log: MFH: Revert. Nokia didn't pay me enough. :) http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.888&r2=1.1247.2.889&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.888 php-src/NEWS:1.1247.2.889 --- php-src/NEWS:1.1247.2.888 Mon Apr 25 08:03:53 2005 +++ php-src/NEWS Mon Apr 25 17:22:47 2005 @@ -28,7 +28,6 @@ (Uwe Schindler) - Fixed bug #32311 (mb_encode_mimeheader() does not properly escape characters). (Moriyoshi) -- Fixed bug #32111 (Cookies can also be separated by comma). (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.10&r2=1.45.2.11&ty=u Index: php-src/main/php_variables.c diff -u php-src/main/php_variables.c:1.45.2.10 php-src/main/php_variables.c:1.45.2.11 --- php-src/main/php_variables.c:1.45.2.10 Sun Apr 24 14:10:30 2005 +++ php-src/main/php_variables.c Mon Apr 25 17:22:48 2005 @@ -16,7 +16,7 @@ | Zeev Suraski <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: php_variables.c,v 1.45.2.10 2005/04/24 18:10:30 iliaa Exp $ */ +/* $Id: php_variables.c,v 1.45.2.11 2005/04/25 21:22:48 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"; /* Cookies can be separated with , or ; */ + separator = ";\0"; break; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php