From 948186df0b011917410a3e75fc889ecaeeac005e Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 7 May 2015 20:36:29 +0000 Subject: [PATCH] Add missing parameter descriptions to the `created_term` hook documentation. Props dlh. Fixes #32276. Built from https://develop.svn.wordpress.org/trunk@32450 git-svn-id: http://core.svn.wordpress.org/trunk@32420 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 6 +++++- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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.