Changeset 26450 for branches/3.7/src
- Timestamp:
- 11/28/2013 02:35:00 AM (11 years ago)
- Location:
- branches/3.7
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 26149
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-admin/includes/upgrade.php
r25838 r26450 406 406 upgrade_370(); 407 407 408 if ( $wp_current_db_version < 26148 ) 409 upgrade_372(); 410 408 411 maybe_disable_link_manager(); 409 412 … … 1221 1224 if ( $wp_current_db_version < 25824 ) 1222 1225 wp_clear_scheduled_hook( 'wp_auto_updates_maybe_update' ); 1226 } 1227 1228 /** 1229 * Execute changes made in WordPress 3.7.2. 1230 * 1231 * @since 3.7.2 1232 * @since 3.8.0 1233 */ 1234 function upgrade_372() { 1235 global $wp_current_db_version; 1236 if ( $wp_current_db_version < 26148 ) 1237 wp_clear_scheduled_hook( 'wp_maybe_auto_update' ); 1223 1238 } 1224 1239 -
branches/3.7/src/wp-includes/update.php
r25957 r26450 585 585 } 586 586 $next = $next - get_option( 'gmt_offset' ) * HOUR_IN_SECONDS; 587 // Add a random number of minutes, so we don't have all sites trying to update exactly on the hour 588 $next = $next + rand( 0, 59 ) * MINUTE_IN_SECONDS; 587 589 wp_schedule_event( $next, 'twicedaily', 'wp_maybe_auto_update' ); 588 590 } -
branches/3.7/src/wp-includes/version.php
r25982 r26450 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 2 5824;14 $wp_db_version = 26148; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.