Version Description
Mar 25 2022 = * Fix: Comments/Users scanner fixed.
Download this release
Release Info
Developer | glomberg |
Plugin | Spam protection, AntiSpam, FireWall by CleanTalk |
Version | 5.174.1 |
Comparing to | |
See all releases |
Code changes from version 5.174 to 5.174.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.174
|
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.174.1
|
8 |
Author: СleanTalk <welcome@cleantalk.org>
|
9 |
Author URI: https://cleantalk.org
|
10 |
Text Domain: cleantalk-spam-protect
|
lib/Cleantalk/ApbctWP/FindSpam/ListTable/Comments.php
CHANGED
@@ -128,17 +128,17 @@ class Comments extends \Cleantalk\ApbctWP\CleantalkListTable
|
|
128 |
$actions = array(
|
129 |
'approve' => sprintf(
|
130 |
'<span class="approve"><a href="?page=%s&action=%s&spam=%s">Approve</a></span>',
|
131 |
-
addslashes($_GET['page']),
|
132 |
'approve',
|
133 |
$id
|
134 |
),
|
135 |
'spam' => sprintf(
|
136 |
'<span class="spam"><a href="?page=%s&action=%s&spam=%s">Spam</a></span>',
|
137 |
-
addslashes($_GET['page']),
|
138 |
'spam',
|
139 |
$id
|
140 |
),
|
141 |
-
'trash' => sprintf('<a href="?page=%s&action=%s&spam=%s">Trash</a>', addslashes($_GET['page']), 'trash', $id),
|
142 |
);
|
143 |
|
144 |
return sprintf('%1$s %2$s', $column_content, $this->row_actions($actions));
|
128 |
$actions = array(
|
129 |
'approve' => sprintf(
|
130 |
'<span class="approve"><a href="?page=%s&action=%s&spam=%s">Approve</a></span>',
|
131 |
+
htmlspecialchars(addslashes($_GET['page'])),
|
132 |
'approve',
|
133 |
$id
|
134 |
),
|
135 |
'spam' => sprintf(
|
136 |
'<span class="spam"><a href="?page=%s&action=%s&spam=%s">Spam</a></span>',
|
137 |
+
htmlspecialchars(addslashes($_GET['page'])),
|
138 |
'spam',
|
139 |
$id
|
140 |
),
|
141 |
+
'trash' => sprintf('<a href="?page=%s&action=%s&spam=%s">Trash</a>', htmlspecialchars(addslashes($_GET['page'])), 'trash', $id),
|
142 |
);
|
143 |
|
144 |
return sprintf('%1$s %2$s', $column_content, $this->row_actions($actions));
|
lib/Cleantalk/ApbctWP/FindSpam/ListTable/Users.php
CHANGED
@@ -113,7 +113,7 @@ class Users extends \Cleantalk\ApbctWP\CleantalkListTable
|
|
113 |
$actions = array(
|
114 |
'delete' => sprintf(
|
115 |
'<a href="?page=%s&action=%s&spam=%s">Delete</a>',
|
116 |
-
addslashes($_GET['page']),
|
117 |
'delete',
|
118 |
$user_obj->ID
|
119 |
),
|
113 |
$actions = array(
|
114 |
'delete' => sprintf(
|
115 |
'<a href="?page=%s&action=%s&spam=%s">Delete</a>',
|
116 |
+
htmlspecialchars(addslashes($_GET['page'])),
|
117 |
'delete',
|
118 |
$user_obj->ID
|
119 |
),
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: spam, antispam, anti-spam, comments, firewall
|
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.174
|
8 |
License: GPLv2
|
9 |
|
10 |
Spam protection, anti-spam, firewall, premium plugin. No spam comments & users, no spam contact form & WooCommerce anti-spam.
|
@@ -595,6 +595,9 @@ If your website has forms that send data to external sources, you can enable opt
|
|
595 |
|
596 |
== Changelog ==
|
597 |
|
|
|
|
|
|
|
598 |
= 5.174 Mar 25 2022 =
|
599 |
#### Minor issues fixed.
|
600 |
* Fix. URLs storing fixed.
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.174.1
|
8 |
License: GPLv2
|
9 |
|
10 |
Spam protection, anti-spam, firewall, premium plugin. No spam comments & users, no spam contact form & WooCommerce anti-spam.
|
595 |
|
596 |
== Changelog ==
|
597 |
|
598 |
+
= 5.174.1 Mar 25 2022 =
|
599 |
+
* Fix: Comments/Users scanner fixed.
|
600 |
+
|
601 |
= 5.174 Mar 25 2022 =
|
602 |
#### Minor issues fixed.
|
603 |
* Fix. URLs storing fixed.
|