Plugin Directory

Changeset 3363985


Ignore:
Timestamp:
09/18/2025 12:44:00 PM (7 months ago)
Author:
integromat
Message:

Fixed some bugs introduced in 1.6.0

Location:
integromat-connector
Files:
39 added
3 edited

Legend:

Unmodified
Added
Removed
  • integromat-connector/trunk/class/class-rest-request.php

    r3361722 r3363985  
    126126            return $sanitized;
    127127        } elseif ( is_string( $data ) ) {
    128             return sanitize_text_field( $data );
     128            return wp_kses_post( wp_unslash( $data ) );
    129129        } elseif ( is_numeric( $data ) ) {
    130130            return is_float( $data ) ? floatval( $data ) : intval( $data );
  • integromat-connector/trunk/index.php

    r3361722 r3363985  
    33/**
    44 * @package Integromat_Connector
    5  * @version 1.6.0
     5 * @version 1.6.1
    66 */
    77
     
    1111Author: Celonis s.r.o.
    1212Author URI: https://www.make.com/en?utm_source=wordpress&utm_medium=partner&utm_campaign=wordpress-partner-make
    13 Version: 1.6.0
     13Version: 1.6.1
    1414License: GPL v2 or later
    1515License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1919define('IWC_PLUGIN_NAME_SAFE', 'integromat-wordpress-connector');
    2020define('IWC_MENUITEM_IDENTIFIER', 'integromat_custom_fields');
    21 define('IWC_PLUGIN_VERSION', '1.6.0');
     21define('IWC_PLUGIN_VERSION', '1.6.1');
    2222
    2323require __DIR__ . '/class/class-user.php';
  • integromat-connector/trunk/readme.txt

    r3361722 r3363985  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 1.6.0
     7Stable tag: 1.6.1
    88License: GPLv2 or later
    99
     
    4545
    4646== Changelog ==
     47= 1.6.1 =
     48* Fixed some bugs introduced in 1.6.0
     49
    4750= 1.6.0 =
    4851* Security improvement: Granular API permissions
Note: See TracChangeset for help on using the changeset viewer.