Changeset 3358395
- Timestamp:
- 09/09/2025 08:07:01 AM (7 months ago)
- Location:
- themesflat-addons-for-elementor
- Files:
-
- 2 edited
-
tags/2.3.0/widgets/widget-iconbox.php (modified) (3 diffs)
-
trunk/widgets/widget-iconbox.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
themesflat-addons-for-elementor/tags/2.3.0/widgets/widget-iconbox.php
r3355148 r3358395 1387 1387 <div class="content"> 1388 1388 <<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?> class="title"><?php echo esc_attr($settings['title_text']); ?></<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?>> 1389 <?php echo sprintf('<div class="description">%s</div>', esc_html($settings['description_text'])); ?>1389 <?php echo sprintf('<div class="description">%s</div>', wp_kses_post($settings['description_text'])); ?> 1390 1390 1391 1391 <?php if ( $settings['show_button'] == 'yes' ): … … 1462 1462 <div class="content"> 1463 1463 <<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?> class="title"><?php echo esc_attr($settings['title_text']); ?></<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?>> 1464 <?php echo sprintf('<div class="description">%s</div>', esc_html($settings['description_text'])); ?>1464 <?php echo sprintf('<div class="description">%s</div>', wp_kses_post($settings['description_text'])); ?> 1465 1465 1466 1466 <?php if ( $settings['show_button'] == 'yes' ): … … 1537 1537 <div class="content"> 1538 1538 <<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?> class="title"><?php echo esc_attr($settings['title_text']); ?></<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?>> 1539 <?php echo sprintf('<div class="description">%s</div>', esc_html($settings['description_text'])); ?>1539 <?php echo sprintf('<div class="description">%s</div>', wp_kses_post($settings['description_text'])); ?> 1540 1540 1541 1541 <?php if ( $settings['show_button'] == 'yes' ): -
themesflat-addons-for-elementor/trunk/widgets/widget-iconbox.php
r3340804 r3358395 1387 1387 <div class="content"> 1388 1388 <<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?> class="title"><?php echo esc_attr($settings['title_text']); ?></<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?>> 1389 <?php echo sprintf('<div class="description">%s</div>', esc_html($settings['description_text'])); ?>1389 <?php echo sprintf('<div class="description">%s</div>', wp_kses_post($settings['description_text'])); ?> 1390 1390 1391 1391 <?php if ( $settings['show_button'] == 'yes' ): … … 1462 1462 <div class="content"> 1463 1463 <<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?> class="title"><?php echo esc_attr($settings['title_text']); ?></<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?>> 1464 <?php echo sprintf('<div class="description">%s</div>', esc_html($settings['description_text'])); ?>1464 <?php echo sprintf('<div class="description">%s</div>', wp_kses_post($settings['description_text'])); ?> 1465 1465 1466 1466 <?php if ( $settings['show_button'] == 'yes' ): … … 1537 1537 <div class="content"> 1538 1538 <<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?> class="title"><?php echo esc_attr($settings['title_text']); ?></<?php echo \Elementor\Utils::validate_html_tag($settings['title_tag']);?>> 1539 <?php echo sprintf('<div class="description">%s</div>', esc_html($settings['description_text'])); ?>1539 <?php echo sprintf('<div class="description">%s</div>', wp_kses_post($settings['description_text'])); ?> 1540 1540 1541 1541 <?php if ( $settings['show_button'] == 'yes' ):
Note: See TracChangeset
for help on using the changeset viewer.