From 1638f8f59e5220f3a63f54fdd47a51e9b103dd79 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 18 Mar 2013 17:17:55 +0000 Subject: [PATCH] Pass tag ID and args array to topic_count_text_callback from wp_generate_tag_cloud(). Props najamelan, toscho fixes #21198 git-svn-id: http://core.svn.wordpress.org/trunk@23741 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 e45734abbb..d9be6d1aa9 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"; }