From 7f9203ba1ba322b6cbb58cde623484835f26548b Mon Sep 17 00:00:00 2001
From: jrfnl <github_nospam@adviesenzo.nl>
Date: Sun, 28 Feb 2016 03:07:13 +0100
Subject: [PATCH] Updated docblocks for feedback from slack
---
src/wp-includes/cron.php | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/wp-includes/cron.php b/src/wp-includes/cron.php
index 5371166..d52b91b 100644
a
|
b
|
function spawn_cron( $gmt_time = 0 ) { |
333 | 333 | * Run scheduled callbacks or spawn cron for all scheduled events. |
334 | 334 | * |
335 | 335 | * @since 2.1.0 |
| 336 | * |
| 337 | * @global object $current_blog |
336 | 338 | */ |
337 | 339 | function wp_cron() { |
338 | 340 | global $current_blog; |
… |
… |
function wp_cron() { |
354 | 356 | /** |
355 | 357 | * Allow to either force skip a cron run or to force cron to run even for suspended blogs. |
356 | 358 | * |
| 359 | * @since 4.5.0 |
| 360 | * |
357 | 361 | * @param bool $should_skip Whether the cron run is going to be skipped. |
358 | 362 | * Will be `false` for single-site or non-suspended multi-site blogs |
359 | 363 | * or `true` for suspended blogs. |