diff options
author | Andi Gutmans <andi@php.net> | 2002-05-23 14:28:14 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-05-23 14:28:14 +0000 |
commit | fc059f5e40ff81535901a3d04c889abaf8b5b485 (patch) | |
tree | 380d35fc044bc9a24ebb2861fc525bdfa46a1d7f | |
parent | e202ad5c8b568811f988579b5d478de0e0765347 (diff) | |
download | php-git-fc059f5e40ff81535901a3d04c889abaf8b5b485.tar.gz |
- Fix typo
-rw-r--r-- | ext/standard/file.c | 6 |
1 files 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; } |