Version Description
- Fixed false spam issue for some users.
Download this release
Release Info
Developer | dnesscarkey |
Plugin | WP Armour – Honeypot Anti Spam |
Version | 1.8.3 |
Comparing to | |
See all releases |
Code changes from version 1.8.2 to 1.8.3
- includes/wpa_functions.php +11 -4
- readme.txt +4 -1
- wp-armour.php +1 -5
includes/wpa_functions.php
CHANGED
@@ -7,11 +7,18 @@ function wpa_load_scripts(){
|
|
7 |
$wpa_add_test = 'no';
|
8 |
}
|
9 |
|
10 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
echo '<script>var wpa_hidden_field = "'.$
|
13 |
-
wp_enqueue_script( 'wpascript', plugins_url( '/js/wpa.js', __FILE__ ), array ( 'jquery' ), '1.8.
|
14 |
-
wp_enqueue_style( 'wpa-css', plugins_url( '/css/wpa.css', __FILE__ ), array(), '1.8.
|
15 |
}
|
16 |
|
17 |
function wpa_plugin_menu(){
|
7 |
$wpa_add_test = 'no';
|
8 |
}
|
9 |
|
10 |
+
if (!isset($_COOKIE['wpa_unique_id'])) {
|
11 |
+
$wpa_unique_id = rand(111, 99999);
|
12 |
+
setcookie('wpa_unique_id',$wpa_unique_id, '0');
|
13 |
+
} else {
|
14 |
+
$wpa_unique_id = $_COOKIE['wpa_unique_id'];
|
15 |
+
}
|
16 |
+
|
17 |
+
$wpa_hidden_field = "<span class='wpa_hidden_field' style='display:none;height:0;width:0;'><input type='text' name='".$GLOBALS['wpa_field_name']."' value='".$wpa_unique_id."' /></span>";
|
18 |
|
19 |
+
echo '<script>var wpa_hidden_field = "'.$wpa_hidden_field.'"; var wpa_add_test = "'.$wpa_add_test.'";</script>';
|
20 |
+
wp_enqueue_script( 'wpascript', plugins_url( '/js/wpa.js', __FILE__ ), array ( 'jquery' ), '1.8.3', true);
|
21 |
+
wp_enqueue_style( 'wpa-css', plugins_url( '/css/wpa.css', __FILE__ ), array(), '1.8.3');
|
22 |
}
|
23 |
|
24 |
function wpa_plugin_menu(){
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://dineshkarki.com.np/wp-armour-anti-spam
|
|
4 |
Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.7
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -132,6 +132,9 @@ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use
|
|
132 |
|
133 |
== Changelog ==
|
134 |
|
|
|
|
|
|
|
135 |
= = 1.8.2 =
|
136 |
* Added extra security check
|
137 |
|
4 |
Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 1.8.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
132 |
|
133 |
== Changelog ==
|
134 |
|
135 |
+
= = 1.8.3 =
|
136 |
+
* Fixed false spam issue for some users.
|
137 |
+
|
138 |
= = 1.8.2 =
|
139 |
* Added extra security check
|
140 |
|
wp-armour.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: WP Armour - Honeypot Anti Spam
|
|
5 |
Plugin URI: http://wordpress.org/plugins/honeypot/
|
6 |
Description: Add honeypot anti spam protection.
|
7 |
Author: Dnesscarkey
|
8 |
-
Version: 1.8.
|
9 |
Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
|
10 |
*/
|
11 |
|
@@ -15,10 +15,6 @@ include 'includes/wpa_dashboard_widget.php';
|
|
15 |
include 'includes/views/wpa_notice.php';
|
16 |
|
17 |
add_action( 'init', function(){
|
18 |
-
if (!isset($_COOKIE['wpa_unique_id'])) {
|
19 |
-
setcookie('wpa_unique_id', rand(111, 99999), '0');
|
20 |
-
}
|
21 |
-
|
22 |
if( !is_admin() ){ // ONLY BLOCK SPAM IF IT IS NOT ADMIN PANEL
|
23 |
include 'includes/integration/wpa_bbpress.php';
|
24 |
include 'includes/integration/wpa_wpcomment.php';
|
5 |
Plugin URI: http://wordpress.org/plugins/honeypot/
|
6 |
Description: Add honeypot anti spam protection.
|
7 |
Author: Dnesscarkey
|
8 |
+
Version: 1.8.3
|
9 |
Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
|
10 |
*/
|
11 |
|
15 |
include 'includes/views/wpa_notice.php';
|
16 |
|
17 |
add_action( 'init', function(){
|
|
|
|
|
|
|
|
|
18 |
if( !is_admin() ){ // ONLY BLOCK SPAM IF IT IS NOT ADMIN PANEL
|
19 |
include 'includes/integration/wpa_bbpress.php';
|
20 |
include 'includes/integration/wpa_wpcomment.php';
|