PluginProbe
Gutenberg / 14.5.2
Gutenberg v14.5.2
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
← All changes | build/widgets/blocks/widget-group.php +1 -1 12.6.0 → 14.5.2 View file →
@@ -27,9 +27,9 @@
27 27
28 28 $html = '';
29 29
30 30 if ( ! empty( $attributes['title'] ) ) {
31 - $html .= $before_title . $attributes['title'] . $after_title;
31 + $html .= $before_title . esc_html( $attributes['title'] ) . $after_title;
32 32 }
33 33
34 34 $html .= '<div class="wp-widget-group__inner-blocks">';
35 35 foreach ( $block->inner_blocks as $inner_block ) {