diff --git a/wp-cron.php b/wp-cron.php index 6ce1a3da9a..75379a053c 100644 --- a/wp-cron.php +++ b/wp-cron.php @@ -26,7 +26,16 @@ if ( !defined('ABSPATH') ) { require_once( dirname( __FILE__ ) . '/wp-load.php' ); } -// Uncached doing_cron transient fetch +/** + * Retrieves the cron lock. + * + * Returns the uncached `doing_cron` transient. + * + * @ignore + * @since 3.3.0 + * + * @return string|false Value of the `doing_cron` transient, 0|false otherwise. + */ function _get_cron_lock() { global $wpdb; diff --git a/wp-includes/version.php b/wp-includes/version.php index 28296c00f1..4b06401608 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta1-31803'; +$wp_version = '4.2-beta1-31804'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.