Remove the old wp_auto_updates_maybe_update cron event. Schedule the new wp_maybe_auto_update event at 7 a.m. and 7 p.m. in the site's timezone.
see #27704. Built from https://develop.svn.wordpress.org/trunk@25825 git-svn-id: http://core.svn.wordpress.org/trunk@25737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4359cfd88d
commit
9432acde4e
|
@ -402,6 +402,9 @@ function upgrade_all() {
|
||||||
if ( $wp_current_db_version < 22422 )
|
if ( $wp_current_db_version < 22422 )
|
||||||
upgrade_350();
|
upgrade_350();
|
||||||
|
|
||||||
|
if ( $wp_current_db_version < 25824 )
|
||||||
|
upgrade_370();
|
||||||
|
|
||||||
maybe_disable_link_manager();
|
maybe_disable_link_manager();
|
||||||
|
|
||||||
maybe_disable_automattic_widgets();
|
maybe_disable_automattic_widgets();
|
||||||
|
@ -1208,6 +1211,17 @@ function upgrade_350() {
|
||||||
wp_delete_term( $term->term_id, 'post_format' );
|
wp_delete_term( $term->term_id, 'post_format' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute changes made in WordPress 3.7.
|
||||||
|
*
|
||||||
|
* @since 3.7.0
|
||||||
|
*/
|
||||||
|
function upgrade_370() {
|
||||||
|
global $wp_current_db_version;
|
||||||
|
if ( $wp_current_db_version < 25824 )
|
||||||
|
wp_clear_scheduled_hook( 'wp_auto_updates_maybe_update' );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute network level changes
|
* Execute network level changes
|
||||||
*
|
*
|
||||||
|
|
|
@ -566,8 +566,17 @@ function wp_schedule_update_checks() {
|
||||||
if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') )
|
if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') )
|
||||||
wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
|
wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
|
||||||
|
|
||||||
if ( !wp_next_scheduled( 'wp_maybe_auto_update' ) && ! defined( 'WP_INSTALLING' ) )
|
if ( ! wp_next_scheduled( 'wp_maybe_auto_update' ) && ! defined( 'WP_INSTALLING' ) ) {
|
||||||
wp_schedule_event( time(), 'twicedaily', 'wp_maybe_auto_update' );
|
// Schedule auto updates for 7 a.m. and 7 p.m. in the timezone of the site.
|
||||||
|
$next = strtotime( 'today 7am' );
|
||||||
|
$now = time();
|
||||||
|
// Find the next instance of 7 a.m. or 7 p.m., but skip it if it is within 3 hours from now.
|
||||||
|
while ( ( $now + 3 * HOUR_IN_SECONDS ) > $next ) {
|
||||||
|
$next += 12 * HOUR_IN_SECONDS;
|
||||||
|
}
|
||||||
|
$next = $next - get_option( 'gmt_offset' ) * HOUR_IN_SECONDS;
|
||||||
|
wp_schedule_event( $next, 'twicedaily', 'wp_maybe_auto_update' );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ( ! is_main_site() && ! is_network_admin() ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
|
if ( ( ! is_main_site() && ! is_network_admin() ) || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
|
||||||
|
|
|
@ -11,7 +11,7 @@ $wp_version = '3.7-beta2-25801';
|
||||||
*
|
*
|
||||||
* @global int $wp_db_version
|
* @global int $wp_db_version
|
||||||
*/
|
*/
|
||||||
$wp_db_version = 25448;
|
$wp_db_version = 25824;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the TinyMCE version
|
* Holds the TinyMCE version
|
||||||
|
|
Loading…
Reference in New Issue