From fc059f5e40ff81535901a3d04c889abaf8b5b485 Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Thu, 23 May 2002 14:28:14 +0000 Subject: [PATCH] - Fix typo --- ext/standard/file.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.40.0