Plugin Directory

Changeset 2811979


Ignore:
Timestamp:
11/04/2022 01:16:08 PM (3 years ago)
Author:
clearoutio
Message:

Minor Enhancements

Location:
clearout-email-validator/trunk
Files:
5 edited

Legend:

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

    r2805874 r2811979  
    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:      2.0.3
     6* Version:      2.0.4
    77* Author:       Clearout.io
    88* Author URI:   https://clearout.io
     
    1313
    1414// plugin version.
    15 define('CLEAROUT_PLUGIN_VERSION', '2.0.3');
     15define('CLEAROUT_PLUGIN_VERSION', '2.0.4');
    1616define('CLEAROUT_RESULT_CACHED_TIMEOUT', 3600);
    1717define('CLEAROUT_BASE_API_URL', "https://api.clearout.io/v2/");
  • clearout-email-validator/trunk/readme.txt

    r2805874 r2811979  
    288288= 2.0.3 =
    289289* Minor Fixes and error handling
     290= 2.0.4 =
     291* Minor Fixes and added strict mode
  • clearout-email-validator/trunk/src/clearout_plugin.php

    r2674354 r2811979  
    11<?php
     2error_reporting(E_STRICT);
    23
    34// add clearout plugin setup page to the admin options page
  • clearout-email-validator/trunk/src/clearout_plugin_page_settings.php

    r2805874 r2811979  
    11<?php
     2error_reporting(E_STRICT);
     3
    24// read the options
    35if (isset($_POST['co_reset_options'])) {
  • clearout-email-validator/trunk/src/clearout_validator.php

    r2798342 r2811979  
    11<?php
     2error_reporting(E_STRICT);
    23
    34// Public methods called by ajax.php
     
    567568        }
    568569    }
    569     if (count($hidden_ignore_fields) > 0) {
    570         return $errors;
    571     }
     570
    572571    $clearout_form_source = "formidable";
    573572    foreach ($values['item_meta'] as $key => $value) {
Note: See TracChangeset for help on using the changeset viewer.