Plugin Directory

Changeset 3367802


Ignore:
Timestamp:
09/25/2025 11:59:55 AM (6 months ago)
Author:
integromat
Message:

1.6.4

  • Fixed a bug related to custom REST API endpoint
Location:
integromat-connector
Files:
39 added
3 edited

Legend:

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

    r3366016 r3367802  
    5959            // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- REST API endpoint, authentication handled separately
    6060            foreach ( $_GET as $key => $value ) {
    61                 $clean_key = sanitize_key( $key );
     61                $clean_key = sanitize_text_field( $key );
    6262                if ( is_array( $value ) ) {
    6363                    $query_params[ $clean_key ] = array_map( 'sanitize_text_field', wp_unslash( $value ) );
     
    121121            $sanitized = array();
    122122            foreach ( $data as $key => $value ) {
    123                 $clean_key = sanitize_key( $key );
     123                $clean_key = sanitize_text_field( $key );
    124124                $sanitized[ $clean_key ] = self::sanitize_recursive( $value );
    125125            }
  • integromat-connector/trunk/index.php

    r3366016 r3367802  
    33/**
    44 * @package Integromat_Connector
    5  * @version 1.6.3
     5 * @version 1.6.4
    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.3
     13Version: 1.6.4
    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.3');
     21define('IWC_PLUGIN_VERSION', '1.6.4');
    2222
    2323require __DIR__ . '/class/class-user.php';
  • integromat-connector/trunk/readme.txt

    r3366016 r3367802  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 1.6.3
     7Stable tag: 1.6.4
    88License: GPLv2 or later
    99
     
    4545
    4646== Changelog ==
     47= 1.6.4 =
     48* Fixed a bug related to custom REST API endpoint
     49
    4750= 1.6.3 =
    4851* New feature: Content sanitization control option
Note: See TracChangeset for help on using the changeset viewer.