mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Site Health: Check that WordPress is installed before scheduling the HTTPS cron.
Trying to schedule cron jobs before WordPress is installed results in DB errors, which is suboptimal. See #47577. Built from https://develop.svn.wordpress.org/trunk@49909 git-svn-id: http://core.svn.wordpress.org/trunk@49608 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1fd05dee6e
commit
4dc59b954a
@ -119,6 +119,10 @@ function wp_update_https_detection_errors() {
|
|||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
function wp_schedule_https_detection() {
|
function wp_schedule_https_detection() {
|
||||||
|
if ( wp_installing() ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ( ! wp_next_scheduled( 'wp_https_detection' ) ) {
|
if ( ! wp_next_scheduled( 'wp_https_detection' ) ) {
|
||||||
wp_schedule_event( time(), 'twicedaily', 'wp_https_detection' );
|
wp_schedule_event( time(), 'twicedaily', 'wp_https_detection' );
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-alpha-49908';
|
$wp_version = '5.7-alpha-49909';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user