Plugin Directory

Changeset 3090075


Ignore:
Timestamp:
05/21/2024 10:00:48 AM (23 months ago)
Author:
zerobounce
Message:

Version 1.0.25

Location:
zerobounce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • zerobounce/trunk/includes/class-zerobounce-email-validator-api.php

    r3032670 r3090075  
    107107                if (json_last_error() === JSON_ERROR_NONE) {
    108108
    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;
    111111                    }
    112112
    113                     return true;
     113                    return false;
    114114                }
    115115            }
  • zerobounce/trunk/readme.txt

    r3088280 r3090075  
    44Requires at least: 4.4
    55Tested up to: 6.4.3
    6 Stable tag: 1.0.24
     6Stable tag: 1.0.25
    77Requires PHP: 7.0
    88License: GPL-2.0+
     
    9999== Changelog ==
    100100
     101= 1.0.25 =
     102* Updated API Key validation
     103
    101104= 1.0.24 =
    102105* Added support for typos - Did you mean
  • zerobounce/trunk/zerobounce-email-validator.php

    r3088280 r3090075  
    1717 * Plugin URI:        https://wordpress.org/plugins/zerobounce/
    1818 * Description:       ZeroBounce Email Validation Plugin
    19  * Version:           1.0.24
     19 * Version:           1.0.25
    2020 * Author:            ZeroBounce
    2121 * Author URI:        https://www.zerobounce.net/
     
    3535}
    3636
    37 define('ZEROBOUNCE_EMAIL_VALIDATOR_VERSION', '1.0.24');
     37define('ZEROBOUNCE_EMAIL_VALIDATOR_VERSION', '1.0.25');
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.