diff --git a/wp-includes/update.php b/wp-includes/update.php index 7e6bb65421..c815d157aa 100644 --- a/wp-includes/update.php +++ b/wp-includes/update.php @@ -232,6 +232,11 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) { // Trigger background updates if running non-interactively, and we weren't called from the update handler. if ( $doing_cron && ! doing_action( 'wp_maybe_auto_update' ) ) { + /** + * Fires during wp_cron, starting the auto update process. + * + * @since 3.9.0 + */ do_action( 'wp_maybe_auto_update' ); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 02ce327bbf..87146763f5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-beta1-44608'; +$wp_version = '5.1-beta1-44609'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.