diff --git a/wp-includes/cron.php b/wp-includes/cron.php index 8eb8de1c0f..b6daeffc74 100644 --- a/wp-includes/cron.php +++ b/wp-includes/cron.php @@ -161,6 +161,7 @@ function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array() ) * Although not passed to a callback function, these arguments are used * to uniquely identify the scheduled event, so they should be the same * as those used when originally scheduling the event. + * @return false|void False when an event is not unscheduled. */ function wp_unschedule_event( $timestamp, $hook, $args = array() ) { // Make sure timestamp is a positive integer diff --git a/wp-includes/version.php b/wp-includes/version.php index 29ad8acf68..266c00c122 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34043'; +$wp_version = '4.4-alpha-34044'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.