diff --git a/src/wp-includes/cron.php b/src/wp-includes/cron.php
index 83cbb8b9d02306d20c2babaa2a59a1f95d337ad4..4ca5363d0458f50c872672438ff00d35e7b1ed97 100644
a
|
b
|
function wp_get_ready_cron_jobs() { |
1164 | 1164 | * @since 2.1.0 |
1165 | 1165 | * @access private |
1166 | 1166 | * |
1167 | | * @return array[]|false Array of cron info arrays on success, false on failure. |
| 1167 | * @return array[] Array of cron info arrays if available. |
1168 | 1168 | */ |
1169 | 1169 | function _get_cron_array() { |
1170 | 1170 | $cron = get_option( 'cron' ); |
1171 | 1171 | if ( ! is_array( $cron ) ) { |
1172 | | return false; |
| 1172 | return array(); |
1173 | 1173 | } |
1174 | 1174 | |
1175 | 1175 | if ( ! isset( $cron['version'] ) ) { |