Plugin Directory

Changeset 3445705


Ignore:
Timestamp:
01/23/2026 04:12:15 PM (2 months ago)
Author:
clearoutio
Message:

fix for changing error code for 404

Location:
clearout-email-validator
Files:
19 added
3 edited

Legend:

Unmodified
Added
Removed
  • clearout-email-validator/trunk/plugin.php

    r3411051 r3445705  
    44 * Plugin URL:   https://developer.wordpress.org/plugins/clearout-email-validator
    55 * Description:  This plugin seamlessly integrated with all major forms to validate the user's given email address in real-time. Under the hood, this plugin use Clearout API to perform 20+ refined validation checks to determine the status of the email address, and thus helps capturing only the valid leads to maintain high quality mailing list.
    6  * Version:      3.2.4
     6 * Version:      3.2.5
    77 * Author:       Clearout.io
    88 * Author URI:   https://clearout.io
     
    1414
    1515// plugin version.
    16 define( 'CLEAROUT_PLUGIN_VERSION', '3.2.4' );
     16define( 'CLEAROUT_PLUGIN_VERSION', '3.2.5' );
    1717define( 'CLEAROUT_RESULT_CACHED_TIMEOUT', 3600 );
    1818define( 'CLEAROUT_BASE_API_URL', 'https://api.clearout.io/v2/' );
  • clearout-email-validator/trunk/readme.txt

    r3411051 r3445705  
    55Requires at least: 4.6
    66Tested up to: 6.8.1
    7 Stable tag: 3.2.4
     7Stable tag: 3.2.5
    88License: GPLv2 or later
    99Block invalid emails like temporary, disposable, etc. with our real-time email verification. Verify email address during form-fill and stop form spam.
     
    369369= 3.2.4 =
    370370* Minor Fixes
     371= 3.2.5 =
     372* Minor Improvements
  • clearout-email-validator/trunk/src/clearout-validator.php

    r3411051 r3445705  
    321321    if (
    322322        CLEAROUT_TEST_PLUGIN_SOURCE == $clearout_form_source &&
    323         'failed' == $email_result['status'] && 1000 == $email_result['error']['code']
     323        'failed' == $email_result['status'] &&
     324         in_array($email_result['error']['code'], [1000, 1138], true)
    324325    ) {
    325326        $clearout_validation_result['status'] = false;
Note: See TracChangeset for help on using the changeset viewer.