rasmus Mon Jun 9 14:03:44 2008 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/standard head.c Log: Merge from 5.3 branch - no point in echoeing the raw values here http://cvs.php.net/viewvc.cgi/php-src/ext/standard/head.c?r1=1.84.2.1.2.8&r2=1.84.2.1.2.9&diff_format=u Index: php-src/ext/standard/head.c diff -u php-src/ext/standard/head.c:1.84.2.1.2.8 php-src/ext/standard/head.c:1.84.2.1.2.9 --- php-src/ext/standard/head.c:1.84.2.1.2.8 Mon Dec 31 07:20:12 2007 +++ php-src/ext/standard/head.c Mon Jun 9 14:03:44 2008 @@ -15,7 +15,7 @@ | Author: Rasmus Lerdorf <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: head.c,v 1.84.2.1.2.8 2007/12/31 07:20:12 sebastian Exp $ */ +/* $Id: head.c,v 1.84.2.1.2.9 2008/06/09 14:03:44 rasmus Exp $ */ #include <stdio.h> #include "php.h" @@ -69,12 +69,12 @@ int result; if (name && strpbrk(name, "=,; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ - zend_error( E_WARNING, "Cookie names can not contain any of the folllowing '=,; \\t\\r\\n\\013\\014' (%s)", name ); + zend_error( E_WARNING, "Cookie names can not contain any of the folllowing '=,; \\t\\r\\n\\013\\014'" ); return FAILURE; } if (!url_encode && value && strpbrk(value, ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 and \014 */ - zend_error( E_WARNING, "Cookie values can not contain any of the folllowing ',; \\t\\r\\n\\013\\014' (%s)", value ); + zend_error( E_WARNING, "Cookie values can not contain any of the folllowing ',; \\t\\r\\n\\013\\014'" ); return FAILURE; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php