From 6079c4c6d29d72c59f90a8d3a5573a40fe646e65 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 6 Oct 2015 22:39:23 +0000 Subject: [PATCH] Docs: `_pad_term_counts()` takes an array of objects passed by reference, not term IDs. Props wpsmith. Fixes #34174. Built from https://develop.svn.wordpress.org/trunk@34884 git-svn-id: http://core.svn.wordpress.org/trunk@34849 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/taxonomy-functions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/taxonomy-functions.php b/wp-includes/taxonomy-functions.php index 7da100b45f..e11d4615e1 100644 --- a/wp-includes/taxonomy-functions.php +++ b/wp-includes/taxonomy-functions.php @@ -3662,7 +3662,7 @@ function _get_term_children( $term_id, $terms, $taxonomy, &$ancestors = array() * * @global wpdb $wpdb WordPress database abstraction object. * - * @param array $terms List of term IDs, passed by reference. + * @param array $terms List of term objects, passed by reference. * @param string $taxonomy Term context. */ function _pad_term_counts( &$terms, $taxonomy ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 7b549f8571..b8a9b2006c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34883'; +$wp_version = '4.4-alpha-34884'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.