diff --git a/wp-includes/cron.php b/wp-includes/cron.php index 1778fbddc2..a4d160f70c 100644 --- a/wp-includes/cron.php +++ b/wp-includes/cron.php @@ -12,6 +12,10 @@ * a time which you specify. The action will fire off when someone visits your * WordPress site, if the schedule time has passed. * + * Note that scheduling an event to occur within 10 minutes of an existing event + * with the same action hook will be ignored, unless you pass unique `$args` values + * for each scheduled event. + * * @since 2.1.0 * @link https://codex.wordpress.org/Function_Reference/wp_schedule_single_event * diff --git a/wp-includes/version.php b/wp-includes/version.php index 6b4bf47c80..d812d1ef49 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta4-38147'; +$wp_version = '4.6-beta4-38148'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.