tony2001 Tue Jun 10 08:14:45 2008 UTC
Modified files:
/php-src/ext/standard head.c
Log:
fix typo
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/head.c?r1=1.100&r2=1.101&diff_format=u
Index: php-src/ext/standard/head.c
diff -u php-src/ext/standard/head.c:1.100 php-src/ext/standard/head.c:1.101
--- php-src/ext/standard/head.c:1.100 Mon Jun 9 14:05:49 2008
+++ php-src/ext/standard/head.c Tue Jun 10 08:14:45 2008
@@ -15,7 +15,7 @@
| Author: Rasmus Lerdorf <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: head.c,v 1.100 2008/06/09 14:05:49 rasmus Exp $ */
+/* $Id: head.c,v 1.101 2008/06/10 08:14:45 tony2001 Exp $ */
#include <stdio.h>
#include "php.h"
@@ -70,12 +70,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