diff --git a/wp-admin/includes/class-wp-upgrader.php b/wp-admin/includes/class-wp-upgrader.php index 91966a74f2..e9bb79e845 100644 --- a/wp-admin/includes/class-wp-upgrader.php +++ b/wp-admin/includes/class-wp-upgrader.php @@ -1806,16 +1806,17 @@ class Language_Pack_Upgrader extends WP_Upgrader { public $bulk = true; /** - * Asynchronously upgrade language packs after other upgrades have been made. + * Asynchronously upgrades language packs after other upgrades have been made. * * Hooked to the {@see 'upgrader_process_complete'} action by default. * * @since 3.7.0 * @access public - * * @static * - * @param false|WP_Upgrader $upgrader + * @param false|WP_Upgrader $upgrader Optional. WP_Upgrader instance or false. If `$upgrader` is + * a Language_Pack_Upgrader instance, the method will bail to + * avoid recursion. Otherwise unused. Default false. */ public static function async_upgrade( $upgrader = false ) { // Avoid recursion. @@ -1829,8 +1830,10 @@ class Language_Pack_Upgrader extends WP_Upgrader { return; } - // Avoid messing with VCS installs, at least for now. - // Noted: this is not the ideal way to accomplish this. + /* + * Avoid messing with VCS installs, at least for now. + * Noted: this is not the ideal way to accomplish this. + */ $check_vcs = new WP_Automatic_Updater; if ( $check_vcs->is_vcs_checkout( WP_CONTENT_DIR ) ) { return; diff --git a/wp-includes/version.php b/wp-includes/version.php index 5bca848f46..c51ce56ac0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34496'; +$wp_version = '4.4-alpha-34497'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.