Reinstate the custom chmod value in FtpExt. Accidentally removed in r12998. Props reaperhulk. Fixes #13667
git-svn-id: http://svn.automattic.com/wordpress/trunk@15086 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
18094087e1
commit
b9eff36d8d
|
@ -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…
Reference in New Issue