Ticket #17837: 17837.patch
File 17837.patch, 638 bytes (added by , 13 years ago) |
---|
-
wp-includes/default-widgets.php
333 333 334 334 function widget( $args, $instance ) { 335 335 extract($args); 336 $title = apply_filters('widget_title', empty($instance['title']) ? ' ' : $instance['title'], $instance, $this->id_base);336 $title = apply_filters('widget_title', empty($instance['title']) ? '' : $instance['title'], $instance, $this->id_base); 337 337 echo $before_widget; 338 338 if ( $title ) 339 339 echo $before_title . $title . $after_title;