Changeset 3090075
- Timestamp:
- 05/21/2024 10:00:48 AM (23 months ago)
- Location:
- zerobounce/trunk
- Files:
-
- 3 edited
-
includes/class-zerobounce-email-validator-api.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
zerobounce-email-validator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zerobounce/trunk/includes/class-zerobounce-email-validator-api.php
r3032670 r3090075 107 107 if (json_last_error() === JSON_ERROR_NONE) { 108 108 109 if (array_key_exists(" error", $body_json) && strpos($body_json['error'], 'Invalid') !== -1) {110 return false;109 if (array_key_exists("valid", $body_json) && $body_json['valid']) { 110 return true; 111 111 } 112 112 113 return true;113 return false; 114 114 } 115 115 } -
zerobounce/trunk/readme.txt
r3088280 r3090075 4 4 Requires at least: 4.4 5 5 Tested up to: 6.4.3 6 Stable tag: 1.0.2 46 Stable tag: 1.0.25 7 7 Requires PHP: 7.0 8 8 License: GPL-2.0+ … … 99 99 == Changelog == 100 100 101 = 1.0.25 = 102 * Updated API Key validation 103 101 104 = 1.0.24 = 102 105 * Added support for typos - Did you mean -
zerobounce/trunk/zerobounce-email-validator.php
r3088280 r3090075 17 17 * Plugin URI: https://wordpress.org/plugins/zerobounce/ 18 18 * Description: ZeroBounce Email Validation Plugin 19 * Version: 1.0.2 419 * Version: 1.0.25 20 20 * Author: ZeroBounce 21 21 * Author URI: https://www.zerobounce.net/ … … 35 35 } 36 36 37 define('ZEROBOUNCE_EMAIL_VALIDATOR_VERSION', '1.0.2 4');37 define('ZEROBOUNCE_EMAIL_VALIDATOR_VERSION', '1.0.25'); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.