From 28ee4bf382e0b4d7e40a4ce870661d00c95bb411 Mon Sep 17 00:00:00 2001 From: azaozz Date: Tue, 5 May 2009 07:14:51 +0000 Subject: [PATCH] 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 --- wp-includes/default-widgets.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/default-widgets.php b/wp-includes/default-widgets.php index 1bd108c84..767869acf 100644 --- a/wp-includes/default-widgets.php +++ b/wp-includes/default-widgets.php @@ -980,7 +980,9 @@ class WP_Widget_Tag_Cloud extends WP_Widget { echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; + echo '
'; wp_tag_cloud(); + echo "
\n"; echo $after_widget; }