Changeset 31525 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 02/23/2015 09:07:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r31449 r31525 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 } … … 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 }
Note: See TracChangeset
for help on using the changeset viewer.