Use FS_CHMOD_FILE rather than an explicit 0644 in copy_dir() and _copy_dir().
This occurs when we can't copy a file. We chmod it and try again. see #22704. Built from https://develop.svn.wordpress.org/trunk@25793 git-svn-id: http://core.svn.wordpress.org/trunk@25705 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b4b6c09476
commit
eeaad19a26
|
@ -789,7 +789,7 @@ function copy_dir($from, $to, $skip_list = array() ) {
|
|||
if ( 'f' == $fileinfo['type'] ) {
|
||||
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true, FS_CHMOD_FILE) ) {
|
||||
// If copy failed, chmod file to 0644 and try again.
|
||||
$wp_filesystem->chmod($to . $filename, 0644);
|
||||
$wp_filesystem->chmod( $to . $filename, FS_CHMOD_FILE );
|
||||
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true, FS_CHMOD_FILE) )
|
||||
return new WP_Error( 'copy_failed_copy_dir', __( 'Could not copy file.' ), $to . $filename );
|
||||
}
|
||||
|
|
|
@ -900,7 +900,7 @@ function _copy_dir($from, $to, $skip_list = array() ) {
|
|||
if ( 'f' == $fileinfo['type'] ) {
|
||||
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true, FS_CHMOD_FILE) ) {
|
||||
// If copy failed, chmod file to 0644 and try again.
|
||||
$wp_filesystem->chmod($to . $filename, 0644);
|
||||
$wp_filesystem->chmod( $to . $filename, FS_CHMOD_FILE );
|
||||
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true, FS_CHMOD_FILE) )
|
||||
return new WP_Error( 'copy_failed__copy_dir', __( 'Could not copy file.' ), $to . $filename );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue