Changeset 3367802
- Timestamp:
- 09/25/2025 11:59:55 AM (6 months ago)
- Location:
- integromat-connector
- Files:
-
- 39 added
- 3 edited
-
tags/1.6.4 (added)
-
tags/1.6.4/api (added)
-
tags/1.6.4/api/authentication.php (added)
-
tags/1.6.4/api/response.php (added)
-
tags/1.6.4/assets (added)
-
tags/1.6.4/assets/integromat-white.svg (added)
-
tags/1.6.4/assets/iwc.css (added)
-
tags/1.6.4/assets/iwc.js (added)
-
tags/1.6.4/class (added)
-
tags/1.6.4/class/class-api-permissions.php (added)
-
tags/1.6.4/class/class-api-token.php (added)
-
tags/1.6.4/class/class-file-validator.php (added)
-
tags/1.6.4/class/class-guard.php (added)
-
tags/1.6.4/class/class-logger.php (added)
-
tags/1.6.4/class/class-rate-limiter.php (added)
-
tags/1.6.4/class/class-rest-request.php (added)
-
tags/1.6.4/class/class-rest-response.php (added)
-
tags/1.6.4/class/class-user.php (added)
-
tags/1.6.4/index.php (added)
-
tags/1.6.4/licence.txt (added)
-
tags/1.6.4/readme.txt (added)
-
tags/1.6.4/settings (added)
-
tags/1.6.4/settings/class-controller.php (added)
-
tags/1.6.4/settings/class-meta-object.php (added)
-
tags/1.6.4/settings/events.php (added)
-
tags/1.6.4/settings/object-types (added)
-
tags/1.6.4/settings/object-types/class-comments-meta.php (added)
-
tags/1.6.4/settings/object-types/class-post-meta.php (added)
-
tags/1.6.4/settings/object-types/class-term-meta.php (added)
-
tags/1.6.4/settings/object-types/class-user-meta.php (added)
-
tags/1.6.4/settings/object-types/custom-taxonomy.php (added)
-
tags/1.6.4/settings/object-types/general.php (added)
-
tags/1.6.4/settings/object-types/security.php (added)
-
tags/1.6.4/settings/render.php (added)
-
tags/1.6.4/settings/template (added)
-
tags/1.6.4/settings/template/customFields.phtml (added)
-
tags/1.6.4/settings/template/custom_taxonomies.phtml (added)
-
tags/1.6.4/settings/template/general_menu.phtml (added)
-
tags/1.6.4/settings/template/security_settings.phtml (added)
-
trunk/class/class-rest-request.php (modified) (2 diffs)
-
trunk/index.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
integromat-connector/trunk/class/class-rest-request.php
r3366016 r3367802 59 59 // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- REST API endpoint, authentication handled separately 60 60 foreach ( $_GET as $key => $value ) { 61 $clean_key = sanitize_ key( $key );61 $clean_key = sanitize_text_field( $key ); 62 62 if ( is_array( $value ) ) { 63 63 $query_params[ $clean_key ] = array_map( 'sanitize_text_field', wp_unslash( $value ) ); … … 121 121 $sanitized = array(); 122 122 foreach ( $data as $key => $value ) { 123 $clean_key = sanitize_ key( $key );123 $clean_key = sanitize_text_field( $key ); 124 124 $sanitized[ $clean_key ] = self::sanitize_recursive( $value ); 125 125 } -
integromat-connector/trunk/index.php
r3366016 r3367802 3 3 /** 4 4 * @package Integromat_Connector 5 * @version 1.6. 35 * @version 1.6.4 6 6 */ 7 7 … … 11 11 Author: Celonis s.r.o. 12 12 Author URI: https://www.make.com/en?utm_source=wordpress&utm_medium=partner&utm_campaign=wordpress-partner-make 13 Version: 1.6. 313 Version: 1.6.4 14 14 License: GPL v2 or later 15 15 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 19 19 define('IWC_PLUGIN_NAME_SAFE', 'integromat-wordpress-connector'); 20 20 define('IWC_MENUITEM_IDENTIFIER', 'integromat_custom_fields'); 21 define('IWC_PLUGIN_VERSION', '1.6. 3');21 define('IWC_PLUGIN_VERSION', '1.6.4'); 22 22 23 23 require __DIR__ . '/class/class-user.php'; -
integromat-connector/trunk/readme.txt
r3366016 r3367802 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.2 7 Stable tag: 1.6. 37 Stable tag: 1.6.4 8 8 License: GPLv2 or later 9 9 … … 45 45 46 46 == Changelog == 47 = 1.6.4 = 48 * Fixed a bug related to custom REST API endpoint 49 47 50 = 1.6.3 = 48 51 * New feature: Content sanitization control option
Note: See TracChangeset
for help on using the changeset viewer.