Plugin Directory

Changeset 3482357


Ignore:
Timestamp:
03/14/2026 03:51:40 AM (2 weeks ago)
Author:
GhozyLab
Message:

Release new version

Location:
page-builder-wp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • page-builder-wp/trunk/inc/global/wpc-helpers.php

    r3442868 r3482357  
    30733073}
    30743074
    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' );
     3075function 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
    30823086}
    30833087
     
    35883592    }
    35893593
    3590     $content = do_shortcode( $data );
     3594    $content = do_shortcode( wp_kses_post( $data ) );
    35913595
    35923596    return $content;
  • page-builder-wp/trunk/page-builder-wp.php

    r3441597 r3482357  
    77Text Domain: page-builder-wp
    88Domain Path: /languages
    9 Version: 1.0.5
     9Version: 1.0.7
    1010License: GPLv2 or later
    1111License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    7272        define( 'PBWP_YOUTUBE_API', 'https://www.youtube.com/iframe_api' );
    7373        define( 'PBWP_REST_NAMESPACE', 'wp_composer/v1' );
    74         define( 'PBWP_VERSION', '1.0.5' );
     74        define( 'PBWP_VERSION', '1.0.7' );
    7575        define( 'PBWP_ICON_LIB_VERSION', '1.0' );
    7676        define( 'PBWP_SHAPE_DIVIDER_VERSION', '1.0.1' );
  • page-builder-wp/trunk/readme.txt

    r3441597 r3482357  
    44Requires at least: 6.0
    55Tested up to: 6.9
    6 Stable tag: 1.0.5
     6Stable tag: 1.0.7
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    257257== Changelog ==
    258258
     259= 1.0.7 =
     260* Fixed : Security XSS issue reported by Wordfence
     261
    259262= 1.0.5 =
    260263* Updated compatibility with WordPress 6.9
     
    287290== Upgrade Notice ==
    288291
    289 = 1.0.5 =
    290 Updated compatibility with WordPress 6.9
     292= 1.0.7 =
     293IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!
Note: See TracChangeset for help on using the changeset viewer.