- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/src/wp-includes/taxonomy.php
r33877 r33647 4438 4438 4439 4439 /** 4440 * In order to avoid the _wp_batch_split_terms() job being accidentally removed,4440 * In order to avoid the wp_batch_split_terms() job being accidentally removed, 4441 4441 * check that it's still scheduled while we haven't finished splitting terms. 4442 4442 * … … 4445 4445 */ 4446 4446 function _wp_check_for_scheduled_split_terms() { 4447 if ( ! get_option( 'finished_splitting_shared_terms' ) && ! wp_next_scheduled( 'wp_ split_shared_term_batch' ) ) {4448 wp_schedule_single_event( time() + MINUTE_IN_SECONDS, 'wp_ split_shared_term_batch' );4447 if ( ! get_option( 'finished_splitting_shared_terms' ) && ! wp_next_scheduled( 'wp_batch_split_terms' ) ) { 4448 wp_schedule_single_event( time() + MINUTE_IN_SECONDS, 'wp_batch_split_terms' ); 4449 4449 } 4450 4450 }
Note: See TracChangeset
for help on using the changeset viewer.