Changeset 3482357
- Timestamp:
- 03/14/2026 03:51:40 AM (2 weeks ago)
- Location:
- page-builder-wp/trunk
- Files:
-
- 3 edited
-
inc/global/wpc-helpers.php (modified) (2 diffs)
-
page-builder-wp.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
page-builder-wp/trunk/inc/global/wpc-helpers.php
r3442868 r3482357 3073 3073 } 3074 3074 3075 function pbwp_str_to_utf8( string $str ): string 3076 { 3077 if ( mb_check_encoding( $str, 'UTF-8' ) ) { 3078 return $str; 3079 } 3080 3081 return mb_convert_encoding( $str, 'UTF-8', 'ISO-8859-1' ); 3075 function pbwp_str_to_utf8( $str ) 3076 { 3077 3078 $decoded = utf8_decode( $str ); 3079 3080 if ( mb_detect_encoding( $decoded, 'UTF-8', true ) === false ) { 3081 return $str; 3082 } 3083 3084 return $decoded; 3085 3082 3086 } 3083 3087 … … 3588 3592 } 3589 3593 3590 $content = do_shortcode( $data);3594 $content = do_shortcode( wp_kses_post( $data ) ); 3591 3595 3592 3596 return $content; -
page-builder-wp/trunk/page-builder-wp.php
r3441597 r3482357 7 7 Text Domain: page-builder-wp 8 8 Domain Path: /languages 9 Version: 1.0. 59 Version: 1.0.7 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 72 72 define( 'PBWP_YOUTUBE_API', 'https://www.youtube.com/iframe_api' ); 73 73 define( 'PBWP_REST_NAMESPACE', 'wp_composer/v1' ); 74 define( 'PBWP_VERSION', '1.0. 5' );74 define( 'PBWP_VERSION', '1.0.7' ); 75 75 define( 'PBWP_ICON_LIB_VERSION', '1.0' ); 76 76 define( 'PBWP_SHAPE_DIVIDER_VERSION', '1.0.1' ); -
page-builder-wp/trunk/readme.txt
r3441597 r3482357 4 4 Requires at least: 6.0 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 56 Stable tag: 1.0.7 7 7 Requires PHP: 7.2 8 8 License: GPLv2 or later … … 257 257 == Changelog == 258 258 259 = 1.0.7 = 260 * Fixed : Security XSS issue reported by Wordfence 261 259 262 = 1.0.5 = 260 263 * Updated compatibility with WordPress 6.9 … … 287 290 == Upgrade Notice == 288 291 289 = 1.0. 5=290 Updated compatibility with WordPress 6.9 292 = 1.0.7 = 293 IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!
Note: See TracChangeset
for help on using the changeset viewer.