From 1b6398d64b03fc7a023c259ec6866556f7002dbb Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 15 Sep 2011 10:09:45 +0000 Subject: [PATCH] A little bit of whitespace keeps the code readable. git-svn-id: http://svn.automattic.com/wordpress/trunk@18678 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/widgets.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index bc43866fb..98f8cf664 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -1175,8 +1175,8 @@ function the_widget($widget, $instance = array(), $args = array()) { if ( !is_a($widget_obj, 'WP_Widget') ) return; - $before_widget = sprintf('
', $widget_obj->widget_options['classname']); - $default_args = array('before_widget' => $before_widget, 'after_widget' => "
", 'before_title' => '

', 'after_title' => '

'); + $before_widget = sprintf('
', $widget_obj->widget_options['classname'] ); + $default_args = array( 'before_widget' => $before_widget, 'after_widget' => "
", 'before_title' => '

', 'after_title' => '

' ); $args = wp_parse_args($args, $default_args); $instance = wp_parse_args($instance);