diff --git src/wp-admin/includes/schema.php src/wp-admin/includes/schema.php
index 95ee375..8c84054 100644
|
|
function populate_options() { |
496 | 496 | |
497 | 497 | // 3.5 |
498 | 498 | 'link_manager_enabled' => 0, |
| 499 | |
| 500 | // 4.3.0 |
| 501 | 'finished_splitting_shared_terms' => 1, |
499 | 502 | ); |
500 | 503 | |
501 | 504 | // 3.3 |
diff --git src/wp-admin/includes/upgrade.php src/wp-admin/includes/upgrade.php
index e7d7dd7..cb4d63d 100644
|
|
function upgrade_430() { |
1507 | 1507 | |
1508 | 1508 | // Shared terms are split in a separate process. |
1509 | 1509 | if ( $wp_current_db_version < 32814 ) { |
| 1510 | update_option( 'finished_splitting_shared_terms', 0 ); |
1510 | 1511 | wp_schedule_single_event( time() + ( 1 * MINUTE_IN_SECONDS ), 'wp_split_shared_term_batch' ); |
1511 | 1512 | } |
1512 | 1513 | |