Wrap tag cloud in a block element, props hudatoriq, fixes #7905

git-svn-id: http://svn.automattic.com/wordpress/trunk@11199 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-05-05 07:14:51 +00:00
parent 8d6ec42ce1
commit 28ee4bf382
1 changed files with 2 additions and 0 deletions

View File

@ -980,7 +980,9 @@ class WP_Widget_Tag_Cloud extends WP_Widget {
echo $before_widget;
if ( $title )
echo $before_title . $title . $after_title;
echo '<div>';
wp_tag_cloud();
echo "</div>\n";
echo $after_widget;
}