Changeset 33727 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 08/25/2015 04:31:52 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r33715 r33727 4442 4442 4443 4443 /** 4444 * In order to avoid the wp_batch_split_terms() job being accidentally removed,4444 * In order to avoid the _wp_batch_split_terms() job being accidentally removed, 4445 4445 * check that it's still scheduled while we haven't finished splitting terms. 4446 4446 * … … 4449 4449 */ 4450 4450 function _wp_check_for_scheduled_split_terms() { 4451 if ( ! get_option( 'finished_splitting_shared_terms' ) && ! wp_next_scheduled( 'wp_ batch_split_terms' ) ) {4452 wp_schedule_single_event( time() + MINUTE_IN_SECONDS, 'wp_ batch_split_terms' );4451 if ( ! get_option( 'finished_splitting_shared_terms' ) && ! wp_next_scheduled( 'wp_split_shared_term_batch' ) ) { 4452 wp_schedule_single_event( time() + MINUTE_IN_SECONDS, 'wp_split_shared_term_batch' ); 4453 4453 } 4454 4454 }
Note: See TracChangeset
for help on using the changeset viewer.