diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2006-05-19 10:44:34 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2006-05-19 10:44:34 +0000 |
commit | 205bdeda417d72db9b38fcbb7651e9af5aa72749 (patch) | |
tree | 16d1e3a84f84a98d8affc2e83ea63165e02aa8bb /ext/standard/file.c | |
parent | 1417222aee62a8bdea9c4e74e13ca752cb183f29 (diff) | |
download | php-git-205bdeda417d72db9b38fcbb7651e9af5aa72749.tar.gz |
Name change: php_get_tmpdir() renamed to sys_get_temp_dir()
Diffstat (limited to 'ext/standard/file.c')
-rw-r--r-- | ext/standard/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/file.c b/ext/standard/file.c index adf86f2cda..121ba395ad 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -2555,9 +2555,9 @@ PHP_FUNCTION(fnmatch) /* }}} */ #endif -/* {{{ proto string php_get_tmpdir() +/* {{{ proto string sys_get_temp_dir() Returns directory path used for temporary files */ -PHP_FUNCTION(php_get_tmpdir) +PHP_FUNCTION(sys_get_temp_dir) { RETURN_STRING((char *)php_get_temporary_directory(), 1); } |