Version Description
- Fixed error message due to removal of ajax call.
Download this release
Release Info
Developer | dnesscarkey |
Plugin | WP Armour – Honeypot Anti Spam |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.0.1
- includes/wpa_config.php +1 -1
- readme.txt +5 -1
- wp-armour.php +1 -3
includes/wpa_config.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
3 |
-
$GLOBALS['wpa_version'] = '2.0';
|
4 |
$GLOBALS['wpa_field_name'] = get_option('wpa_field_name');
|
5 |
$GLOBALS['wpa_error_message'] = get_option('wpa_error_message');
|
6 |
$GLOBALS['wpa_disable_test_widget'] = get_option('wpa_disable_test_widget');
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
3 |
+
$GLOBALS['wpa_version'] = '2.0.1';
|
4 |
$GLOBALS['wpa_field_name'] = get_option('wpa_field_name');
|
5 |
$GLOBALS['wpa_error_message'] = get_option('wpa_error_message');
|
6 |
$GLOBALS['wpa_disable_test_widget'] = get_option('wpa_disable_test_widget');
|
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: 6.0
|
7 |
-
Stable tag: 2.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -136,6 +136,10 @@ With WP Armour - Honeypot Anti Spam plugin it is No. But if you want you can use
|
|
136 |
|
137 |
== Changelog ==
|
138 |
|
|
|
|
|
|
|
|
|
139 |
= = 2.0 =
|
140 |
|
141 |
* Fixed false notification message regarding version conflict.
|
4 |
Tags: anti spam, spam checker, spam filter, gravity forms, contact form 7
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 2.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
136 |
|
137 |
== Changelog ==
|
138 |
|
139 |
+
= = 2.0.1 =
|
140 |
+
|
141 |
+
* Fixed error message due to removal of ajax call.
|
142 |
+
|
143 |
= = 2.0 =
|
144 |
|
145 |
* Fixed false notification message regarding version conflict.
|
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: 2.0
|
9 |
Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
|
10 |
*/
|
11 |
|
@@ -36,8 +36,6 @@ add_action('wp_enqueue_scripts','wpa_load_scripts');
|
|
36 |
add_action('login_enqueue_scripts','wpa_load_scripts');
|
37 |
add_action('admin_menu', 'wpa_plugin_menu');
|
38 |
add_action('wpa_handle_spammers','wpa_save_stats',10,2);
|
39 |
-
add_action( 'wp_ajax_wpa_field_info', 'wpa_field_info_ajax' );
|
40 |
-
add_action( 'wp_ajax_nopriv_wpa_field_info', 'wpa_field_info_ajax' );
|
41 |
|
42 |
register_activation_hook( __FILE__, 'wpa_plugin_activation' );
|
43 |
|
5 |
Plugin URI: http://wordpress.org/plugins/honeypot/
|
6 |
Description: Add honeypot anti spam protection.
|
7 |
Author: Dnesscarkey
|
8 |
+
Version: 2.0.1
|
9 |
Author URI: https://dineshkarki.com.np/wp-armour-anti-spam
|
10 |
*/
|
11 |
|
36 |
add_action('login_enqueue_scripts','wpa_load_scripts');
|
37 |
add_action('admin_menu', 'wpa_plugin_menu');
|
38 |
add_action('wpa_handle_spammers','wpa_save_stats',10,2);
|
|
|
|
|
39 |
|
40 |
register_activation_hook( __FILE__, 'wpa_plugin_activation' );
|
41 |
|