Changeset 3122836
- Timestamp:
- 07/21/2024 11:45:39 PM (21 months ago)
- Location:
- validator-pizza
- Files:
-
- 4 edited
- 1 copied
-
tags/1.2.6 (copied) (copied from validator-pizza/trunk)
-
tags/1.2.6/readme.txt (modified) (3 diffs)
-
tags/1.2.6/validator-pizza.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/validator-pizza.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
validator-pizza/tags/1.2.6/readme.txt
r3106351 r3122836 1 1 === MailCheck.ai === 2 Contributors: tompec , mailcheckai2 Contributors: tompec 3 3 Tags: email validation, disposable email, spam prevention, security, user registration 4 4 Requires at least: 5.2 5 5 Tested up to: 6.5.3 6 6 Requires PHP: 7.2 7 Stable tag: 1.2. 57 Stable tag: 1.2.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 57 == Changelog == 58 58 59 = 1.2.6 = 60 * Update the API endpoint 61 59 62 = 1.2.5 = 60 63 * Improved code structure and organization … … 91 94 = 1.0 = 92 95 * First version 93 94 == Upgrade Notice ==95 96 = 1.2.5 =97 This update improves plugin performance, security, and follows WordPress best practices. It requires WordPress 5.2+ and PHP 7.2+.98 99 == Privacy Policy ==100 101 MailCheck.ai plugin sends the domain part of email addresses to the MailCheck.ai API for validation. No personal data or email addresses are stored by the API. For more information, visit the [MailCheck.ai website](https://www.mailcheck.ai). -
validator-pizza/tags/1.2.6/validator-pizza.php
r3106351 r3122836 12 12 * Plugin URI: https://www.mailcheck.ai 13 13 * Description: Prevents throwaway emails from signing up or commenting on your website using the MailCheck.ai API. 14 * Version: 1.2. 514 * Version: 1.2.6 15 15 * Requires at least: 5.2 16 16 * Requires PHP: 7.2 … … 87 87 */ 88 88 private static function fetch_api_data($domain) { 89 $request_url = "https://api. mailcheck.ai/domain/" . urlencode($domain);89 $request_url = "https://api.usercheck.com/domain/" . urlencode($domain); 90 90 $response = wp_remote_get($request_url, array('timeout' => 5)); 91 91 -
validator-pizza/trunk/readme.txt
r3106351 r3122836 1 1 === MailCheck.ai === 2 Contributors: tompec , mailcheckai2 Contributors: tompec 3 3 Tags: email validation, disposable email, spam prevention, security, user registration 4 4 Requires at least: 5.2 5 5 Tested up to: 6.5.3 6 6 Requires PHP: 7.2 7 Stable tag: 1.2. 57 Stable tag: 1.2.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 57 == Changelog == 58 58 59 = 1.2.6 = 60 * Update the API endpoint 61 59 62 = 1.2.5 = 60 63 * Improved code structure and organization … … 91 94 = 1.0 = 92 95 * First version 93 94 == Upgrade Notice ==95 96 = 1.2.5 =97 This update improves plugin performance, security, and follows WordPress best practices. It requires WordPress 5.2+ and PHP 7.2+.98 99 == Privacy Policy ==100 101 MailCheck.ai plugin sends the domain part of email addresses to the MailCheck.ai API for validation. No personal data or email addresses are stored by the API. For more information, visit the [MailCheck.ai website](https://www.mailcheck.ai). -
validator-pizza/trunk/validator-pizza.php
r3106351 r3122836 12 12 * Plugin URI: https://www.mailcheck.ai 13 13 * Description: Prevents throwaway emails from signing up or commenting on your website using the MailCheck.ai API. 14 * Version: 1.2. 514 * Version: 1.2.6 15 15 * Requires at least: 5.2 16 16 * Requires PHP: 7.2 … … 87 87 */ 88 88 private static function fetch_api_data($domain) { 89 $request_url = "https://api. mailcheck.ai/domain/" . urlencode($domain);89 $request_url = "https://api.usercheck.com/domain/" . urlencode($domain); 90 90 $response = wp_remote_get($request_url, array('timeout' => 5)); 91 91
Note: See TracChangeset
for help on using the changeset viewer.