diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 5254eef426..1b93971fb2 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -3036,8 +3036,12 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) { * Fires after a new term is created, and after the term cache has been cleaned. * * @since 2.3.0 + * + * @param int $term_id Term ID. + * @param int $tt_id Term taxonomy ID. + * @param string $taxonomy Taxonomy slug. */ - do_action( "created_term", $term_id, $tt_id, $taxonomy ); + do_action( 'created_term', $term_id, $tt_id, $taxonomy ); /** * Fires after a new term in a specific taxonomy is created, and after the term diff --git a/wp-includes/version.php b/wp-includes/version.php index 7b719053da..289f0b444b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32442'; +$wp_version = '4.3-alpha-32450'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.