From b44877f0da5c91563cc214a208032c2a1ccb331b Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Tue, 19 Feb 2019 20:24:50 +0000 Subject: [PATCH] Taxonomy: Remove `@ignore` annotation on `_get_term_hierarchy()`. Originally introduced in [32453], the `@ignore` annotation caused the function to be improperly ignored by the Code Reference parser. The `@access private` annotation is the correct way to mark a function for internal use only. Props coffee2code. Fixes #45997. Built from https://develop.svn.wordpress.org/trunk@44755 git-svn-id: http://core.svn.wordpress.org/trunk@44587 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 856df9a19b..bc9af6e73e 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -3439,7 +3439,7 @@ function update_term_cache( $terms, $taxonomy = '' ) { /** * Retrieves children of taxonomy as Term IDs. * - * @ignore + * @access private * @since 2.3.0 * * @param string $taxonomy Taxonomy name. diff --git a/wp-includes/version.php b/wp-includes/version.php index 501f12df99..116d5488dd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-alpha-44749'; +$wp_version = '5.2-alpha-44755'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.