Changeset 3395159
- Timestamp:
- 11/13/2025 03:55:57 PM (4 months ago)
- Location:
- checkview
- Files:
-
- 10 edited
- 1 copied
-
tags/2.0.23 (copied) (copied from checkview/trunk)
-
tags/2.0.23/README.txt (modified) (3 diffs)
-
tags/2.0.23/checkview.php (modified) (2 diffs)
-
tags/2.0.23/includes/checkview-functions.php (modified) (1 diff)
-
tags/2.0.23/includes/checkview-helper-functions.php (modified) (1 diff)
-
tags/2.0.23/includes/class-checkview.php (modified) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/checkview.php (modified) (2 diffs)
-
trunk/includes/checkview-functions.php (modified) (1 diff)
-
trunk/includes/checkview-helper-functions.php (modified) (1 diff)
-
trunk/includes/class-checkview.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkview/tags/2.0.23/README.txt
r3387165 r3395159 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0.2 210 Stable tag: 2.0.23 11 11 12 12 [CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. … … 86 86 87 87 == Changelog == 88 = 2.0.23 = 89 * Trim ports when detecting IP addresses. 90 88 91 = 2.0.22 = 89 92 * Handle CF7 piped value mismatches. … … 385 388 386 389 == Upgrade Notice == 390 = 2.0.23 = 391 * Trim ports when detecting IP addresses. 392 387 393 = 2.0.22 = 388 394 * Handle CF7 piped value mismatches. -
checkview/tags/2.0.23/checkview.php
r3387165 r3395159 12 12 * Plugin URI: https://checkview.io 13 13 * Description: CheckView is the #1 fully automated solution to test your WordPress forms and detect form problems fast. Automatically test your WordPress forms to ensure you never miss a lead again. 14 * Version: 2.0.2 214 * Version: 2.0.23 15 15 * Author: CheckView 16 16 * Author URI: https://checkview.io/ … … 36 36 * @link https://semver.org 37 37 */ 38 define( 'CHECKVIEW_VERSION', '2.0.2 2' );38 define( 'CHECKVIEW_VERSION', '2.0.23' ); 39 39 40 40 if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) { -
checkview/tags/2.0.23/includes/checkview-functions.php
r3375260 r3395159 389 389 foreach ( explode( ',', $key ) as $ip ) { 390 390 $ip = trim( $ip ); 391 392 if ( checkview_validate_ip( $ip ) && is_array( $cv_bot_ip ) && in_array( $ip, $cv_bot_ip ) ) { 391 $ip = preg_replace('/:\d{1,5}$/', '', $ip); 392 393 if ( $ip !== null && checkview_validate_ip( $ip ) && is_array( $cv_bot_ip ) && in_array( $ip, $cv_bot_ip ) ) { 393 394 return sanitize_text_field( $ip ); 394 395 } -
checkview/tags/2.0.23/includes/checkview-helper-functions.php
r3335533 r3395159 23 23 // Validate that the input is a valid IP address. 24 24 if ( ! empty( $ip ) && ! filter_var( $ip, FILTER_VALIDATE_IP ) ) { 25 // If validation fails, handle the error appropriately.26 error_log( esc_html__( 'Invalid IP Address', 'checkview' ) );27 25 return false; 28 26 } elseif ( empty( $ip ) ) { -
checkview/tags/2.0.23/includes/class-checkview.php
r3387165 r3395159 81 81 $this->version = CHECKVIEW_VERSION; 82 82 } else { 83 $this->version = '2.0.2 2';83 $this->version = '2.0.23'; 84 84 } 85 85 $this->plugin_name = 'checkview'; -
checkview/trunk/README.txt
r3387165 r3395159 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0.2 210 Stable tag: 2.0.23 11 11 12 12 [CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. … … 86 86 87 87 == Changelog == 88 = 2.0.23 = 89 * Trim ports when detecting IP addresses. 90 88 91 = 2.0.22 = 89 92 * Handle CF7 piped value mismatches. … … 385 388 386 389 == Upgrade Notice == 390 = 2.0.23 = 391 * Trim ports when detecting IP addresses. 392 387 393 = 2.0.22 = 388 394 * Handle CF7 piped value mismatches. -
checkview/trunk/checkview.php
r3387165 r3395159 12 12 * Plugin URI: https://checkview.io 13 13 * Description: CheckView is the #1 fully automated solution to test your WordPress forms and detect form problems fast. Automatically test your WordPress forms to ensure you never miss a lead again. 14 * Version: 2.0.2 214 * Version: 2.0.23 15 15 * Author: CheckView 16 16 * Author URI: https://checkview.io/ … … 36 36 * @link https://semver.org 37 37 */ 38 define( 'CHECKVIEW_VERSION', '2.0.2 2' );38 define( 'CHECKVIEW_VERSION', '2.0.23' ); 39 39 40 40 if ( ! defined( 'CHECKVIEW_BASE_DIR' ) ) { -
checkview/trunk/includes/checkview-functions.php
r3375260 r3395159 389 389 foreach ( explode( ',', $key ) as $ip ) { 390 390 $ip = trim( $ip ); 391 392 if ( checkview_validate_ip( $ip ) && is_array( $cv_bot_ip ) && in_array( $ip, $cv_bot_ip ) ) { 391 $ip = preg_replace('/:\d{1,5}$/', '', $ip); 392 393 if ( $ip !== null && checkview_validate_ip( $ip ) && is_array( $cv_bot_ip ) && in_array( $ip, $cv_bot_ip ) ) { 393 394 return sanitize_text_field( $ip ); 394 395 } -
checkview/trunk/includes/checkview-helper-functions.php
r3335533 r3395159 23 23 // Validate that the input is a valid IP address. 24 24 if ( ! empty( $ip ) && ! filter_var( $ip, FILTER_VALIDATE_IP ) ) { 25 // If validation fails, handle the error appropriately.26 error_log( esc_html__( 'Invalid IP Address', 'checkview' ) );27 25 return false; 28 26 } elseif ( empty( $ip ) ) { -
checkview/trunk/includes/class-checkview.php
r3387165 r3395159 81 81 $this->version = CHECKVIEW_VERSION; 82 82 } else { 83 $this->version = '2.0.2 2';83 $this->version = '2.0.23'; 84 84 } 85 85 $this->plugin_name = 'checkview';
Note: See TracChangeset
for help on using the changeset viewer.