diff --git a/wp-admin/includes/class-wp-filesystem-ftpsockets.php b/wp-admin/includes/class-wp-filesystem-ftpsockets.php index ff0b882414..95e075c25d 100644 --- a/wp-admin/includes/class-wp-filesystem-ftpsockets.php +++ b/wp-admin/includes/class-wp-filesystem-ftpsockets.php @@ -470,9 +470,10 @@ class WP_Filesystem_ftpsockets extends WP_Filesystem_Base { * * @param string $path * @param bool $recursive + * @return bool */ public function rmdir($path, $recursive = false ) { - $this->delete($path, $recursive); + return $this->delete($path, $recursive); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 5ef50652b4..b2dee1109e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39643'; +$wp_version = '4.8-alpha-39644'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.