diff --git a/wp-admin/includes/class-wp-filesystem-ftpsockets.php b/wp-admin/includes/class-wp-filesystem-ftpsockets.php index d61766da04..a1abc0d1df 100644 --- a/wp-admin/includes/class-wp-filesystem-ftpsockets.php +++ b/wp-admin/includes/class-wp-filesystem-ftpsockets.php @@ -171,15 +171,6 @@ class WP_Filesystem_ftpsockets extends WP_Filesystem_Base { return $this->ftp->chdir($file); } - /** - * @param string $file - * @param bool $group - * @param bool $recursive - */ - public function chgrp($file, $group, $recursive = false ) { - return false; - } - /** * @param string $file * @param int|bool $mode @@ -375,10 +366,6 @@ class WP_Filesystem_ftpsockets extends WP_Filesystem_Base { if ( ! $chmod ) $chmod = FS_CHMOD_DIR; $this->chmod($path, $chmod); - if ( $chown ) - $this->chown($path, $chown); - if ( $chgrp ) - $this->chgrp($path, $chgrp); return true; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 19a8eb01f9..3f31d515b4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31215'; +$wp_version = '4.2-alpha-31216'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.