IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
4062 | 4062 | $count += (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts WHERE $wpdb->posts.ID = $wpdb->term_relationships.object_id AND post_status = 'publish' AND post_type IN ('" . implode("', '", $object_types ) . "') AND term_taxonomy_id = %d", $term ) ); |
4063 | 4063 | |
4064 | 4064 | /** This action is documented in wp-includes/taxonomy.php */ |
4065 | | do_action( 'edit_term_taxonomy', $term, $taxonomy ); |
| 4065 | do_action( 'edit_term_taxonomy', $term, $taxonomy->name ); |
4066 | 4066 | $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) ); |
4067 | 4067 | |
4068 | 4068 | /** This action is documented in wp-includes/taxonomy.php */ |
4069 | | do_action( 'edited_term_taxonomy', $term, $taxonomy ); |
| 4069 | do_action( 'edited_term_taxonomy', $term, $taxonomy->name ); |
4070 | 4070 | } |
4071 | 4071 | } |
4072 | 4072 | |
… |
… |
|
4089 | 4089 | $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d", $term ) ); |
4090 | 4090 | |
4091 | 4091 | /** This action is documented in wp-includes/taxonomy.php */ |
4092 | | do_action( 'edit_term_taxonomy', $term, $taxonomy ); |
| 4092 | do_action( 'edit_term_taxonomy', $term, $taxonomy->name ); |
4093 | 4093 | $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) ); |
4094 | 4094 | |
4095 | 4095 | /** This action is documented in wp-includes/taxonomy.php */ |
4096 | | do_action( 'edited_term_taxonomy', $term, $taxonomy ); |
| 4096 | do_action( 'edited_term_taxonomy', $term, $taxonomy->name ); |
4097 | 4097 | } |
4098 | 4098 | } |
4099 | 4099 | |