From 3da39609e474b7cc972fab8fd4b9db94e808ea23 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Thu, 2 Dec 2010 21:28:17 +0000 Subject: [PATCH] Add class to Tag Cloud widget div. props djzone. fixes #12602 git-svn-id: https://develop.svn.wordpress.org/trunk@16694 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/default-widgets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/default-widgets.php b/wp-includes/default-widgets.php index b5502a55d5..047728bff4 100644 --- a/wp-includes/default-widgets.php +++ b/wp-includes/default-widgets.php @@ -1013,7 +1013,7 @@ class WP_Widget_Tag_Cloud extends WP_Widget { echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; - echo '
'; + echo '
'; wp_tag_cloud( apply_filters('widget_tag_cloud_args', array('taxonomy' => $current_taxonomy) ) ); echo "
\n"; echo $after_widget;