Plugin Directory

Changeset 3361488


Ignore:
Timestamp:
09/15/2025 05:23:08 AM (7 months ago)
Author:
mdashikul
Message:

Stable tag: 2.17.4

Location:
tourfic/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tourfic/trunk/inc/App/Templates/Template_Builder.php

    r3354901 r3361488  
    962962                    // Set up the content rendering callback
    963963                    $template_module->set_print_callback(function() use ($post) {
    964                         echo wp_kses_post( \Elementor\Plugin::$instance->frontend->get_builder_content($post->ID, true) );
     964                        echo \Elementor\Plugin::$instance->frontend->get_builder_content($post->ID, true); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    965965                    });
    966966                   
     
    10601060                // Set up the content rendering callback
    10611061                $template_module->set_print_callback(function() use ($template_post) {
    1062                     echo wp_kses_post( \Elementor\Plugin::$instance->frontend->get_builder_content($template_post->ID, true) );
     1062                    echo \Elementor\Plugin::$instance->frontend->get_builder_content($template_post->ID, true); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
    10631063                });
    10641064               
  • tourfic/trunk/readme.txt

    r3361282 r3361488  
    44Requires at least: 5.4
    55Tested up to: 6.8
    6 Stable tag: 2.17.3
     6Stable tag: 2.17.4
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    405405== Changelog ==
    406406
     407= 2.17.4 – September 15, 2025 =
     408
     409- Fixed: Archive Elementor widgets error.
     410
    407411= 2.17.3 – September 14, 2025 =
    408412
  • tourfic/trunk/tourfic.php

    r3361282 r3361488  
    88 * Text Domain:     tourfic
    99 * Domain Path:     /lang/
    10  * Version:         2.17.3
     10 * Version:         2.17.4
    1111 * Tested up to:    6.8
    1212 * WC tested up to: 10.0
     
    2828     */
    2929
    30     const VERSION = '2.17.3';
     30    const VERSION = '2.17.4';
    3131
    3232    /**
Note: See TracChangeset for help on using the changeset viewer.