mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-01 21:21:24 +01:00
Set perms when making plugin dirs. see #7395
git-svn-id: http://svn.automattic.com/wordpress/trunk@9524 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4a4a04c076
commit
ef093b8caf
@ -753,7 +753,7 @@ function wp_install_plugin($package, $feedback = '') {
|
||||
|
||||
//Create folder if not exists.
|
||||
if( ! $wp_filesystem->exists( $res['to'] ) )
|
||||
if ( ! $wp_filesystem->mkdir( $res['to'] ) )
|
||||
if ( ! $wp_filesystem->mkdir( $res['to'], 0755 ) )
|
||||
return new WP_Error('mkdir_failed', __('Could not create directory'), $res['to']);
|
||||
|
||||
// Copy new version of plugin into place.
|
||||
@ -844,10 +844,11 @@ function wp_install_plugin_local_package($package, $feedback = '') {
|
||||
$res = update_pluginfiles_base_dir($working_dir . '/' . $filelist[0], $plugins_dir . $filelist[0]);
|
||||
|
||||
//Create folder if not exists.
|
||||
if( ! $wp_filesystem->exists( $res['to'] ) )
|
||||
if ( ! $wp_filesystem->mkdir( $res['to'] ) )
|
||||
return new WP_Error('mkdir_failed', __('Could not create directory'), $res['to']);
|
||||
|
||||
if( ! $wp_filesystem->exists( $res['to'] ) ) {
|
||||
if ( ! $wp_filesystem->mkdir( $res['to'], 0755 ) )
|
||||
return new WP_Error('mkdir_failed', __('Could not create directory'), $res['to']);
|
||||
}
|
||||
|
||||
// Copy new version of plugin into place.
|
||||
$result = copy_dir($res['from'], $res['to']);
|
||||
if ( is_wp_error($result) ) {
|
||||
|
@ -254,7 +254,7 @@ function wp_update_plugin($plugin, $feedback = '') {
|
||||
|
||||
//Create folder if not exists.
|
||||
if( ! $wp_filesystem->exists( $res['to'] ) )
|
||||
if ( ! $wp_filesystem->mkdir( $res['to'] ) )
|
||||
if ( ! $wp_filesystem->mkdir( $res['to'], 0755 ) )
|
||||
return new WP_Error('mkdir_failed', __('Could not create directory'), $res['to']);
|
||||
|
||||
// Copy new version of plugin into place.
|
||||
|
Loading…
Reference in New Issue
Block a user