From: Andi Gutmans Date: Thu, 23 May 2002 14:28:14 +0000 (+0000) Subject: - Fix typo X-Git-Tag: RELEASE_0_10~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc059f5e40ff81535901a3d04c889abaf8b5b485;p=php - Fix typo --- diff --git a/ext/standard/file.c b/ext/standard/file.c index 31f128a916..f50640dd12 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -1953,7 +1953,7 @@ PHP_FUNCTION(fgetcsv) convert_to_string_ex(p_delim); /* Make sure that there is at least one character in string */ if (Z_STRLEN_PP(p_delim) < 1) { - php_error(E_WARNING, "%s() 3rd paramater must be a character", + php_error(E_WARNING, "%s() 3rd parameter must be a character", get_active_function_name(TSRMLS_C)); return; } @@ -1968,7 +1968,7 @@ PHP_FUNCTION(fgetcsv) convert_to_string_ex(p_delim); /* Make sure that there is at least one character in string */ if (Z_STRLEN_PP(p_delim) < 1) { - php_error(E_WARNING, "%s() 3rd paramater must be a character", + php_error(E_WARNING, "%s() 3rd parameter must be a character", get_active_function_name(TSRMLS_C)); return; } @@ -1978,7 +1978,7 @@ PHP_FUNCTION(fgetcsv) convert_to_string_ex(p_enclosure); /* Make sure that there is at least one character in string */ if (Z_STRLEN_PP(p_enclosure) < 1) { - php_error(E_WARNING, "%s() 4th paramater must be a character", + php_error(E_WARNING, "%s() 4th parameter must be a character", get_active_function_name(TSRMLS_C)); return; }