From d4e919776437b5e30a5524ed3ff63df00b30197a Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 17 Mar 2015 23:38:27 +0000 Subject: [PATCH] Add a missing DocBlock for the core utility function `_get_cron_lock()`. Props mordauk, valendesigns. Fixes #31646. Built from https://develop.svn.wordpress.org/trunk@31804 git-svn-id: http://core.svn.wordpress.org/trunk@31786 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-cron.php | 11 ++++++++++- wp-includes/version.php | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) 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.