IF copy fails, chmod target to 0644 and try again

git-svn-id: http://svn.automattic.com/wordpress/trunk@9493 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-11-03 17:16:41 +00:00
parent de3e6af863
commit d0519602a7
2 changed files with 10 additions and 2 deletions

View File

@ -542,8 +542,12 @@ function copy_dir($from, $to) {
foreach ( (array) $dirlist as $filename => $fileinfo ) {
if ( 'f' == $fileinfo['type'] ) {
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true) )
return new WP_Error('copy_failed', __('Could not copy file'), $to . $filename);
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true) ) {
// If copy failed, chmod file to 0644 and try again.
$wp_filesystem->chmod($to . $filename, 0644);
if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true) )
return new WP_Error('copy_failed', __('Could not copy file'), $to . $filename);
}
$wp_filesystem->chmod($to . $filename, 0644);
} elseif ( 'd' == $fileinfo['type'] ) {
if ( !$wp_filesystem->is_dir($to . $filename) ) {

View File

@ -1290,6 +1290,10 @@ table.form-table td .updated {
/* Post Screen */
#normal-sortables {
min-height: 50px;
}
.postbox {
position: relative;
min-width: 255px;