tony2001 Tue Jun 10 08:14:59 2008 UTC Modified files: (Branch: PHP_5_2) /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.9&r2=1.84.2.1.2.10&diff_format=u Index: php-src/ext/standard/head.c diff -u php-src/ext/standard/head.c:1.84.2.1.2.9 php-src/ext/standard/head.c:1.84.2.1.2.10 --- php-src/ext/standard/head.c:1.84.2.1.2.9 Mon Jun 9 14:03:44 2008 +++ php-src/ext/standard/head.c Tue Jun 10 08:14:59 2008 @@ -15,7 +15,7 @@ | Author: Rasmus Lerdorf <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: head.c,v 1.84.2.1.2.9 2008/06/09 14:03:44 rasmus Exp $ */ +/* $Id: head.c,v 1.84.2.1.2.10 2008/06/10 08:14:59 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