Add access modifier to `WP_Upgrader::clear_destination()`

See #32444.

Built from https://develop.svn.wordpress.org/trunk@32871


git-svn-id: http://core.svn.wordpress.org/trunk@32842 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-06-19 21:53:25 +00:00
parent 23e02fafce
commit 032ea5b132
2 changed files with 2 additions and 2 deletions

View File

@ -304,7 +304,7 @@ class WP_Upgrader {
*
* @return bool|WP_Error true upon success, {@see WP_Error} on failure.
*/
function clear_destination( $remote_destination ) {
public function clear_destination( $remote_destination ) {
global $wp_filesystem;
if ( ! $wp_filesystem->exists( $remote_destination ) ) {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32870';
$wp_version = '4.3-alpha-32871';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.