tony2001 Tue Jun 10 08:14:52 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard head.c Log: fix typo http://cvs.php.net/viewvc.cgi/php-src/ext/standard/head.c?r1=1.84.2.1.2.7.2.3&r2=1.84.2.1.2.7.2.4&diff_format=u Index: php-src/ext/standard/head.c diff -u php-src/ext/standard/head.c:1.84.2.1.2.7.2.3 php-src/ext/standard/head.c:1.84.2.1.2.7.2.4 --- php-src/ext/standard/head.c:1.84.2.1.2.7.2.3 Mon Mar 10 22:12:36 2008 +++ php-src/ext/standard/head.c Tue Jun 10 08:14:52 2008 @@ -15,7 +15,7 @@ | Author: Rasmus Lerdorf <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: head.c,v 1.84.2.1.2.7.2.3 2008/03/10 22:12:36 felipe Exp $ */ +/* $Id: head.c,v 1.84.2.1.2.7.2.4 2008/06/10 08:14:52 tony2001 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'" ); + zend_error( E_WARNING, "Cookie names can not contain any of the following '=,; \\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'" ); + zend_error( E_WARNING, "Cookie values can not contain any of the following ',; \\t\\r\\n\\013\\014'" ); return FAILURE; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php