Version Description
May 27 2022 = * Fix. EmailEncoder.php. Fix accident encoding.
Download this release
Release Info
Developer | glomberg |
Plugin | Spam protection, AntiSpam, FireWall by CleanTalk |
Version | 5.177.2 |
Comparing to | |
See all releases |
Code changes from version 5.177.1 to 5.177.2
- cleantalk.php +1 -1
- lib/Cleantalk/Antispam/EmailEncoder.php +4 -0
- readme.txt +4 -1
cleantalk.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Anti-Spam by CleanTalk
|
5 |
Plugin URI: https://cleantalk.org
|
6 |
Description: Max power, all-in-one, no Captcha, premium anti-spam plugin. No comment spam, no registration spam, no contact spam, protects any WordPress forms.
|
7 |
-
Version: 5.177.
|
8 |
Author: СleanTalk <welcome@cleantalk.org>
|
9 |
Author URI: https://cleantalk.org
|
10 |
Text Domain: cleantalk-spam-protect
|
4 |
Plugin Name: Anti-Spam by CleanTalk
|
5 |
Plugin URI: https://cleantalk.org
|
6 |
Description: Max power, all-in-one, no Captcha, premium anti-spam plugin. No comment spam, no registration spam, no contact spam, protects any WordPress forms.
|
7 |
+
Version: 5.177.2
|
8 |
Author: СleanTalk <welcome@cleantalk.org>
|
9 |
Author URI: https://cleantalk.org
|
10 |
Text Domain: cleantalk-spam-protect
|
lib/Cleantalk/Antispam/EmailEncoder.php
CHANGED
@@ -18,6 +18,10 @@ class EmailEncoder
|
|
18 |
{
|
19 |
global $apbct;
|
20 |
|
|
|
|
|
|
|
|
|
21 |
$this->secret_key = md5($apbct->api_key);
|
22 |
|
23 |
$this->encription = function_exists('openssl_encrypt') && function_exists('openssl_decrypt');
|
18 |
{
|
19 |
global $apbct;
|
20 |
|
21 |
+
if ( ! $apbct->settings['data__email_decoder'] ) {
|
22 |
+
return;
|
23 |
+
}
|
24 |
+
|
25 |
$this->secret_key = md5($apbct->api_key);
|
26 |
|
27 |
$this->encription = function_exists('openssl_encrypt') && function_exists('openssl_decrypt');
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: spam, antispam, anti-spam, comments, firewall
|
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.177.
|
8 |
License: GPLv2
|
9 |
|
10 |
Spam protection, anti-spam, firewall, premium plugin. No spam comments & users, no spam contact form & WooCommerce anti-spam.
|
@@ -596,6 +596,9 @@ If your website has forms that send data to external sources, you can enable opt
|
|
596 |
|
597 |
== Changelog ==
|
598 |
|
|
|
|
|
|
|
599 |
= 5.177.1 May 19 2022 =
|
600 |
* Fix. Pluggable. Getting REST url fixed.
|
601 |
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.177.2
|
8 |
License: GPLv2
|
9 |
|
10 |
Spam protection, anti-spam, firewall, premium plugin. No spam comments & users, no spam contact form & WooCommerce anti-spam.
|
596 |
|
597 |
== Changelog ==
|
598 |
|
599 |
+
= 5.177.2 May 27 2022 =
|
600 |
+
* Fix. EmailEncoder.php. Fix accident encoding.
|
601 |
+
|
602 |
= 5.177.1 May 19 2022 =
|
603 |
* Fix. Pluggable. Getting REST url fixed.
|
604 |
|