diff --git a/src/wp-admin/includes/class-wp-upgrader.php b/src/wp-admin/includes/class-wp-upgrader.php index 9487dc6cd4..396672585d 100644 --- a/src/wp-admin/includes/class-wp-upgrader.php +++ b/src/wp-admin/includes/class-wp-upgrader.php @@ -628,7 +628,7 @@ class WP_Upgrader { } // Move new version of item into place. - $result = move_dir( $source, $remote_destination ); + $result = move_dir( $source, $remote_destination, $remote_source ); if ( is_wp_error( $result ) ) { if ( $args['clear_working'] ) { $wp_filesystem->delete( $remote_source, true ); @@ -636,7 +636,7 @@ class WP_Upgrader { return $result; } - // Clear the working folder? + // Clear the working directory? if ( $args['clear_working'] ) { $wp_filesystem->delete( $remote_source, true ); } @@ -1047,7 +1047,7 @@ class WP_Upgrader { } // Move to the temp-backup directory. - if ( ! $wp_filesystem->move( $src, $dest, true ) ) { + if ( ! move_dir( $src, $dest ) ) { return new WP_Error( 'fs_temp_backup_move', $this->strings['temp_backup_move_failed'] ); } @@ -1081,7 +1081,7 @@ class WP_Upgrader { } // Move it. - if ( ! $wp_filesystem->move( $src, $dest, true ) ) { + if ( ! move_dir( $src, $dest ) ) { return new WP_Error( 'fs_temp_backup_delete', $this->strings['temp_backup_restore_failed'] ); } } diff --git a/src/wp-admin/includes/file.php b/src/wp-admin/includes/file.php index 2eb0111d09..6dbb8f514a 100644 --- a/src/wp-admin/includes/file.php +++ b/src/wp-admin/includes/file.php @@ -1953,21 +1953,40 @@ function copy_dir( $from, $to, $skip_list = array() ) { * * @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass. * - * @param string $from Source directory. - * @param string $to Destination directory. + * @param string $from Source directory. + * @param string $to Destination directory. + * @param string $working_dir Optional. Remote file source directory. + * Default empty string. * @return true|WP_Error True on success, WP_Error on failure. */ -function move_dir( $from, $to ) { +function move_dir( $from, $to, $working_dir = '' ) { global $wp_filesystem; - $wp_filesystem->rmdir( $to ); - if ( @rename( $from, $to ) ) { - return true; + if ( 'direct' === $wp_filesystem->method ) { + $wp_filesystem->rmdir( $to ); + if ( @rename( $from, $to ) ) { + return true; + } } - $wp_filesystem->mkdir( $to ); + if ( ! $wp_filesystem->is_dir( $to ) ) { + if ( ! $wp_filesystem->mkdir( $to, FS_CHMOD_DIR ) ) { + + // Clear the working directory? + if ( ! empty( $working_dir ) ) { + $wp_filesystem->delete( $working_dir, true ); + } + + return new WP_Error( 'mkdir_failed_move_dir', __( 'Could not create directory.' ), $to ); + } + } $result = copy_dir( $from, $to ); + // Clear the working directory? + if ( ! empty( $working_dir ) ) { + $wp_filesystem->delete( $working_dir, true ); + } + return $result; }