Changeset 3361488
- Timestamp:
- 09/15/2025 05:23:08 AM (7 months ago)
- Location:
- tourfic/trunk
- Files:
-
- 3 edited
-
inc/App/Templates/Template_Builder.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
tourfic.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tourfic/trunk/inc/App/Templates/Template_Builder.php
r3354901 r3361488 962 962 // Set up the content rendering callback 963 963 $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 965 965 }); 966 966 … … 1060 1060 // Set up the content rendering callback 1061 1061 $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 1063 1063 }); 1064 1064 -
tourfic/trunk/readme.txt
r3361282 r3361488 4 4 Requires at least: 5.4 5 5 Tested up to: 6.8 6 Stable tag: 2.17. 36 Stable tag: 2.17.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 405 405 == Changelog == 406 406 407 = 2.17.4 – September 15, 2025 = 408 409 - Fixed: Archive Elementor widgets error. 410 407 411 = 2.17.3 – September 14, 2025 = 408 412 -
tourfic/trunk/tourfic.php
r3361282 r3361488 8 8 * Text Domain: tourfic 9 9 * Domain Path: /lang/ 10 * Version: 2.17. 310 * Version: 2.17.4 11 11 * Tested up to: 6.8 12 12 * WC tested up to: 10.0 … … 28 28 */ 29 29 30 const VERSION = '2.17. 3';30 const VERSION = '2.17.4'; 31 31 32 32 /**
Note: See TracChangeset
for help on using the changeset viewer.