From a2f5cdb5bb1569c109bb114e1b4169a26da73b73 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sat, 19 Dec 2015 08:19:54 +0000 Subject: [PATCH] Docs: Add a missing notation for the `$gmt_time` parameter in the DocBlock for `spawn_cron()`. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36022 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/cron.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/cron.php b/src/wp-includes/cron.php index 60492c5d04..e47c70b4bc 100644 --- a/src/wp-includes/cron.php +++ b/src/wp-includes/cron.php @@ -232,9 +232,11 @@ function wp_next_scheduled( $hook, $args = array() ) { } /** - * Send request to run cron through HTTP request that doesn't halt page loading. + * Sends a request to run cron through HTTP request that doesn't halt page loading. * * @since 2.1.0 + * + * @param int $gmt_time Optional. Unix timestamp. Default 0 (current time is used). */ function spawn_cron( $gmt_time = 0 ) { if ( ! $gmt_time )