Changeset 33647 for branches/4.3/src/wp-admin/includes/upgrade.php
- Timestamp:
- 08/19/2015 11:36:06 AM (9 years ago)
- Location:
- branches/4.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
-
branches/4.3/src/wp-admin/includes/upgrade.php
r33627 r33647 534 534 if ( $wp_current_db_version < 33055 ) 535 535 upgrade_430(); 536 537 if ( $wp_current_db_version < 33056 ) 538 upgrade_431(); 536 539 537 540 maybe_disable_link_manager(); … … 1579 1582 1580 1583 /** 1584 * Executes changes made in WordPress 4.3.1. 1585 * 1586 * @since 4.3.1 1587 */ 1588 function upgrade_431() { 1589 // Fix incorrect cron entries for term splitting 1590 $cron_array = _get_cron_array(); 1591 if ( isset( $cron_array['wp_batch_split_terms'] ) ) { 1592 foreach ( $cron_array['wp_batch_split_terms'] as $timestamp_hook => $cron_data ) { 1593 foreach ( $cron_data as $key => $args ) { 1594 wp_unschedule_event( 'wp_batch_split_terms', $timestamp_hook, $args['args'] ); 1595 } 1596 } 1597 } 1598 } 1599 1600 /** 1581 1601 * Executes network-level upgrade routines. 1582 1602 *
Note: See TracChangeset
for help on using the changeset viewer.