Changeset 29945 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 10/17/2014 08:58:48 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r29931 r29945 2415 2415 $parent = $term_obj->parent; 2416 2416 2417 $edit_tt_ids = $wpdb->get_col( "SELECT `term_taxonomy_id` FROM $wpdb->term_taxonomy WHERE `parent` = " . (int)$term_obj->term_id ); 2417 $edit_ids = $wpdb->get_results( "SELECT term_id, term_taxonomy_id FROM $wpdb->term_taxonomy WHERE `parent` = " . (int)$term_obj->term_id ); 2418 $edit_tt_ids = wp_list_pluck( $edit_ids, 'term_taxonomy_id' ); 2418 2419 2419 2420 /** … … 2426 2427 do_action( 'edit_term_taxonomies', $edit_tt_ids ); 2427 2428 $wpdb->update( $wpdb->term_taxonomy, compact( 'parent' ), array( 'parent' => $term_obj->term_id) + compact( 'taxonomy' ) ); 2429 2430 // Clean the cache for all child terms. 2431 $edit_term_ids = wp_list_pluck( $edit_ids, 'term_id' ); 2432 clean_term_cache( $edit_term_ids, $taxonomy ); 2428 2433 2429 2434 /**
Note: See TracChangeset
for help on using the changeset viewer.