Plugin Directory

Changeset 3039826


Ignore:
Timestamp:
02/22/2024 04:39:53 PM (2 years ago)
Author:
byteplant
Message:

WP6.5

Location:
email-validator-by-byteplant
Files:
3 edited
23 copied

Legend:

Unmodified
Added
Removed
  • email-validator-by-byteplant/tags/6.5/plugin.php

    r2908018 r3039826  
    44 *
    55 * Plugin Name: Byteplant Email Validator
    6  * Plugin URI: https://www.email-validator.net/
     6 * Plugin URI: https://www.byteplant.com/email-validator/
    77 * Description: The Byteplant Email Validator plugin verifies email addresses with a real-time live check to find out if they really exist and are valid/deliverable.
    8  * Version: 6.4
     8 * Version: 6.5
    99 * License: GPL2
    1010 * Author: Byteplant
    11  * Author URI: https://www.email-validator.net/
     11 * Author URI: https://www.byteplant.com/email-validator/
    1212 * Text Domain: email-validator-by-byteplant
    1313 * Domain Path: /languages
  • email-validator-by-byteplant/tags/6.5/readme.txt

    r2908018 r3039826  
    33Tags: email, email validation, validation, anti spam, spam, fraud, anti fraud, email checker, comments, contact form, contact form 7, email validation, ninja, gravity, grunion, jetpack, woocommerce
    44Requires at least: 3.0.1
    5 Tested up to: 6.2
    6 Stable tag: 6.4
     5Tested up to: 6.5
     6Stable tag: 6.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 With the Byteplant Email Validator plugin you can easily verify with a real-time live check if an email address really exists and is valid (https://www.email-validator.net).
     10With the Byteplant Email Validator plugin you can easily verify with a real-time live check if an email address really exists and is valid (https://www.byteplant.com/email-validator/).
    1111
    1212== Description ==
     
    1414= Real-Time Email Validation - Live Check =
    1515
    16 This plugin uses the Byteplant Email-Validator API (https://www.email-validator.net) for a real-time live check to find out if an email address really exists or not.
     16This plugin uses the Byteplant Email-Validator API (https://www.byteplant.com/email-validator/) for a real-time live check to find out if an email address really exists or not.
    1717
    1818= Supported Plugins / Compatible Forms =
     
    5656
    5757The plugin requires an API Key. Please sign up for an account at
    58 https://www.email-validator.net/free-trial-registration.html (no credit card required).
     58https://www.byteplant.com/email-validator/free-trial-registration.html (no credit card required).
    5959The trial account comes with 1,000 free credits.
    6060
     
    86863. Configure the plugin in the Settings section of the Administrator Dashboard.
    87874. Register for an API key and get 1,000 free credits (no credit card required):
    88 https://www.email-validator.net/free-trial-registration.html
     88https://www.byteplant.com/email-validator/free-trial-registration.html
    89895. Copy and paste your API key to the Settings section of the Administrator Dashboard.
    9090
  • email-validator-by-byteplant/tags/6.5/src/API/class-bpmvp-email-validator.php

    r2067629 r3039826  
    200200    public function set_blacklist ( $list ) {
    201201
    202         $this->blacklist = array_map('trim', explode(',', $list));
     202        $this->blacklist = array_map('trim', explode(',', (string) $list));
    203203    }
    204204
  • email-validator-by-byteplant/trunk/plugin.php

    r2908018 r3039826  
    44 *
    55 * Plugin Name: Byteplant Email Validator
    6  * Plugin URI: https://www.email-validator.net/
     6 * Plugin URI: https://www.byteplant.com/email-validator/
    77 * Description: The Byteplant Email Validator plugin verifies email addresses with a real-time live check to find out if they really exist and are valid/deliverable.
    8  * Version: 6.4
     8 * Version: 6.5
    99 * License: GPL2
    1010 * Author: Byteplant
    11  * Author URI: https://www.email-validator.net/
     11 * Author URI: https://www.byteplant.com/email-validator/
    1212 * Text Domain: email-validator-by-byteplant
    1313 * Domain Path: /languages
  • email-validator-by-byteplant/trunk/readme.txt

    r2908018 r3039826  
    33Tags: email, email validation, validation, anti spam, spam, fraud, anti fraud, email checker, comments, contact form, contact form 7, email validation, ninja, gravity, grunion, jetpack, woocommerce
    44Requires at least: 3.0.1
    5 Tested up to: 6.2
    6 Stable tag: 6.4
     5Tested up to: 6.5
     6Stable tag: 6.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 With the Byteplant Email Validator plugin you can easily verify with a real-time live check if an email address really exists and is valid (https://www.email-validator.net).
     10With the Byteplant Email Validator plugin you can easily verify with a real-time live check if an email address really exists and is valid (https://www.byteplant.com/email-validator/).
    1111
    1212== Description ==
     
    1414= Real-Time Email Validation - Live Check =
    1515
    16 This plugin uses the Byteplant Email-Validator API (https://www.email-validator.net) for a real-time live check to find out if an email address really exists or not.
     16This plugin uses the Byteplant Email-Validator API (https://www.byteplant.com/email-validator/) for a real-time live check to find out if an email address really exists or not.
    1717
    1818= Supported Plugins / Compatible Forms =
     
    5656
    5757The plugin requires an API Key. Please sign up for an account at
    58 https://www.email-validator.net/free-trial-registration.html (no credit card required).
     58https://www.byteplant.com/email-validator/free-trial-registration.html (no credit card required).
    5959The trial account comes with 1,000 free credits.
    6060
     
    86863. Configure the plugin in the Settings section of the Administrator Dashboard.
    87874. Register for an API key and get 1,000 free credits (no credit card required):
    88 https://www.email-validator.net/free-trial-registration.html
     88https://www.byteplant.com/email-validator/free-trial-registration.html
    89895. Copy and paste your API key to the Settings section of the Administrator Dashboard.
    9090
  • email-validator-by-byteplant/trunk/src/API/class-bpmvp-email-validator.php

    r2067629 r3039826  
    200200    public function set_blacklist ( $list ) {
    201201
    202         $this->blacklist = array_map('trim', explode(',', $list));
     202        $this->blacklist = array_map('trim', explode(',', (string) $list));
    203203    }
    204204
Note: See TracChangeset for help on using the changeset viewer.