From 18b07129c949cd150a417ace697026bb634a5217 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 3 Apr 2013 03:55:05 +0000 Subject: [PATCH] Pass the tag object instead of just the tag ID to topic_count_text_callback. see [23741]. see #21198. git-svn-id: http://core.svn.wordpress.org/trunk@23888 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index d9be6d1aa9..cfc0f2a231 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -671,7 +671,7 @@ function wp_generate_tag_cloud( $tags, $args = '' ) { $tag_link = '#' != $tag->link ? esc_url( $tag->link ) : '#'; $tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key; $tag_name = $tags[ $key ]->name; - $a[] = "$tag_name"; }