From: Antony Dovgal Date: Tue, 10 Jun 2008 08:14:52 +0000 (+0000) Subject: fix typo X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7d94aab533d89c189094d6082f31512d2832256;p=php fix typo --- diff --git a/ext/standard/head.c b/ext/standard/head.c index be172cefea..6958fbfccd 100644 --- a/ext/standard/head.c +++ b/ext/standard/head.c @@ -69,12 +69,12 @@ PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, t 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; }