mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 12:58:25 +01:00
Reinstate the custom chmod value in FtpExt. Accidentally removed in r12998. Props reaperhulk. Fixes #13667
git-svn-id: https://develop.svn.wordpress.org/trunk@15086 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b8f92556c3
commit
792509c0be
@ -249,7 +249,7 @@ class WP_Filesystem_FTPext extends WP_Filesystem_Base {
|
||||
function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
|
||||
if ( !@ftp_mkdir($this->link, $path) )
|
||||
return false;
|
||||
$this->chmod($path);
|
||||
$this->chmod($path, $chmod);
|
||||
if ( $chown )
|
||||
$this->chown($path, $chown);
|
||||
if ( $chgrp )
|
||||
|
Loading…
x
Reference in New Issue
Block a user