Ticket #41392: 41392.0.diff
File 41392.0.diff, 572 bytes (added by , 6 years ago) |
---|
-
src/wp-includes/widgets/class-wp-widget-custom-html.php
diff --git src/wp-includes/widgets/class-wp-widget-custom-html.php src/wp-includes/widgets/class-wp-widget-custom-html.php index 5de618285f..2e30754ec7 100644
class WP_Widget_Custom_HTML extends WP_Widget { 79 79 if ( ! empty( $title ) ) { 80 80 echo $args['before_title'] . $title . $args['after_title']; 81 81 } 82 echo '<div class="textwidget custom-html-widget">'; 82 83 echo $content; 84 echo '</div>'; 83 85 echo $args['after_widget']; 84 86 } 85 87