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:
@@ -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
@@ -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);
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user