PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 3.1.4
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v3.1.4
3.1.4 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 All 93 releases
← All changes | modules/info-list/widgets/info-list.php +2 -2 3.0.3 → 3.1.4 View file →
@@ -731,10 +731,10 @@
731 731 if (!empty($item['title'])) {
732 732 printf(
733 733 '<%1$s class="usk-info-list-title"><a %2$s title="%3$s">%3$s</a></%1$s>',
734 734 esc_attr( Utils::get_valid_html_tag($settings['title_tag']) ),
735 - wp_kses_post($this->get_render_attribute_string('title-link')),
736 - wp_kses_post($item['title'])
735 + $this->get_render_attribute_string('title-link'), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
736 + esc_attr($item['title'])
737 737 );
738 738 }
739 739 }
740 740