Plugin Directory

Changeset 3397032


Ignore:
Timestamp:
11/17/2025 09:51:01 AM (3 months ago)
Author:
envothemes
Message:

v1.9.12

Location:
envo-extra/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • envo-extra/trunk/envo-extra.php

    r3347282 r3397032  
    44 * Plugin URI: https://envothemes.com/
    55 * Description: Extra addon for EnvoThemes Themes
    6  * Version: 1.9.11
     6 * Version: 1.9.12
    77 * Author: EnvoThemes
    88 * Author URI: https://envothemes.com/
  • envo-extra/trunk/lib/elementor/widgets/counter/counter.php

    r3080715 r3397032  
    755755        $attr .= $settings[ 'link' ][ 'is_external' ] ? ' target="_blank"' : '';
    756756        $attr .= $settings[ 'link' ][ 'nofollow' ] ? ' rel="nofollow"' : '';
     757        $allowed_tags = [ 'h1','h2','h3','h4','h5','h6','div','span','p' ];
     758        $title_tag = in_array( $settings['title_tag'], $allowed_tags, true ) ? $settings['title_tag'] : 'h3';
    757759        ?>
    758760
     
    770772                <?php
    771773                if ( $settings[ 'title' ] ) :
    772                     printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings[ 'title_tag' ] ), $this->get_render_attribute_string( 'title' ), $settings[ 'title' ] ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     774                    printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $title_tag ), $this->get_render_attribute_string( 'title' ), $settings[ 'title' ] ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    773775                endif;
    774776                if ( $settings[ 'description' ] ) :
  • envo-extra/trunk/lib/elementor/widgets/icon-box/icon-box.php

    r3080715 r3397032  
    910910        $attr .= $settings[ 'link' ][ 'is_external' ] ? ' target="_blank"' : '';
    911911        $attr .= $settings[ 'link' ][ 'nofollow' ] ? ' rel="nofollow"' : '';
     912        $allowed_tags = [ 'h1','h2','h3','h4','h5','h6','div','span','p' ];
     913        $title_tag = in_array( $settings['title_tag'], $allowed_tags, true ) ? $settings['title_tag'] : 'h3';
    912914        ?>
    913915
     
    934936                <?php
    935937                if ( $settings[ 'title' ] ) :
    936                     printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $settings[ 'title_tag' ] ), $this->get_render_attribute_string( 'title' ), $settings[ 'title' ] ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     938                    printf( '<%1$s %2$s>%3$s</%1$s>', tag_escape( $title_tag ), $this->get_render_attribute_string( 'title' ), $settings[ 'title' ] ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    937939                endif;
    938940                ?>
  • envo-extra/trunk/readme.txt

    r3347282 r3397032  
    44Plugin URL: https://envothemes.com/
    55Requires at Least: 4.9
    6 Tested Up To: 6.8
    7 Stable tag: 1.9.11
     6Tested Up To: 6.9
     7Stable tag: 1.9.12
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    3131
    3232== Changelog ==
     33
     34= 1.9.12 =
     35* Security update
     36* Tested with WP 6.9
     37* Tested with WooCommerce 10.4
     38* Tested with Elementor 3.33
    3339
    3440= 1.9.11 =
Note: See TracChangeset for help on using the changeset viewer.