1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00

Fixed bug #69325 (php_copy_file_ex does not pass the argument)

This commit is contained in:
Xinchen Hui
2015-04-08 14:32:31 +08:00
parent f23f7dfed0
commit fa795b0553
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -172,6 +172,8 @@
required_num_args). (Julien)
- Standard:
. Fixed bug #69325 (php_copy_file_ex does not pass the argument).
(imbolk at gmail dot com)
. Fixed bug #69299 (Regression in array_filter's $flag argument in PHP 7).
(Laruence)
. Removed call_user_method() and call_user_method_array() functions. (Kalle)
+1 -1
View File
@@ -1665,7 +1665,7 @@ PHPAPI int php_copy_file(const char *src, const char *dest)
*/
PHPAPI int php_copy_file_ex(const char *src, const char *dest, int src_flg)
{
return php_copy_file_ctx(src, dest, 0, NULL);
return php_copy_file_ctx(src, dest, src_flg, NULL);
}
/* }}} */