diff options
| author | Andrei Zmievski <andrei@php.net> | 2000-09-08 21:58:28 +0000 |
|---|---|---|
| committer | Andrei Zmievski <andrei@php.net> | 2000-09-08 21:58:28 +0000 |
| commit | b409d2f9ea1e7ae12c715f3ec3299be04337e691 (patch) | |
| tree | 3a279fc895ed42b15e002851f1efa903645e2b13 /ext/standard/basic_functions.c | |
| parent | 75086e3088ab06fbb2415e15490c216ac7c9c8b9 (diff) | |
| download | php-git-b409d2f9ea1e7ae12c715f3ec3299be04337e691.tar.gz | |
is_uploaded_file() is probably a better name.
Diffstat (limited to 'ext/standard/basic_functions.c')
| -rw-r--r-- | ext/standard/basic_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 77374bdeed..973fc3d3e4 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -356,7 +356,7 @@ function_entry basic_functions[] = { PHP_FE(parse_ini_file, NULL) - PHP_FE(is_upload_file, NULL) + PHP_FE(is_uploaded_file, NULL) /* functions from reg.c */ PHP_FE(ereg, third_argument_force_ref) @@ -2207,7 +2207,7 @@ PHPAPI PHP_FUNCTION(warn_not_available) } -PHP_FUNCTION(is_upload_file) +PHP_FUNCTION(is_uploaded_file) { zval **path; SLS_FETCH(); |
