Version Description
- Fixed login captcha authentication bug.
Download this release
Release Info
| Developer | wpsolutions |
| Plugin | |
| Version | 4.3.8.2 |
| Comparing to | |
| See all releases | |
Code changes from version 4.3.8.1 to 4.3.8.2
- classes/wp-security-user-login.php +1 -1
- readme.txt +3 -0
- wp-security-core.php +1 -1
- wp-security.php +1 -1
classes/wp-security-user-login.php
CHANGED
|
@@ -18,7 +18,7 @@ class AIOWPSecurity_User_Login
|
|
| 18 |
// Check whether user needs to be manually approved after default WordPress authenticate hooks (with priority 20).
|
| 19 |
add_filter('authenticate', array($this, 'check_manual_registration_approval'), 30, 1);
|
| 20 |
// Check login captcha
|
| 21 |
-
add_filter('authenticate', array($this, 'check_captcha'),
|
| 22 |
// As a last authentication step, perform post authentication steps
|
| 23 |
add_filter('authenticate', array($this, 'post_authenticate'), 100, 3);
|
| 24 |
add_action('aiowps_force_logout_check', array($this, 'aiowps_force_logout_action_handler'));
|
| 18 |
// Check whether user needs to be manually approved after default WordPress authenticate hooks (with priority 20).
|
| 19 |
add_filter('authenticate', array($this, 'check_manual_registration_approval'), 30, 1);
|
| 20 |
// Check login captcha
|
| 21 |
+
add_filter('authenticate', array($this, 'check_captcha'), 2, 1);
|
| 22 |
// As a last authentication step, perform post authentication steps
|
| 23 |
add_filter('authenticate', array($this, 'post_authenticate'), 100, 3);
|
| 24 |
add_action('aiowps_force_logout_check', array($this, 'aiowps_force_logout_action_handler'));
|
readme.txt
CHANGED
|
@@ -187,6 +187,9 @@ https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
|
|
| 187 |
None
|
| 188 |
|
| 189 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 190 |
= 4.3.8.1 =
|
| 191 |
- Minor bug fix - added missing check to enqueue recaptcha script only if that feature is enabled.
|
| 192 |
|
| 187 |
None
|
| 188 |
|
| 189 |
== Changelog ==
|
| 190 |
+
= 4.3.8.2 =
|
| 191 |
+
- Fixed login captcha authentication bug.
|
| 192 |
+
|
| 193 |
= 4.3.8.1 =
|
| 194 |
- Minor bug fix - added missing check to enqueue recaptcha script only if that feature is enabled.
|
| 195 |
|
wp-security-core.php
CHANGED
|
@@ -7,7 +7,7 @@ if ( !defined('ABSPATH') ) {
|
|
| 7 |
if (!class_exists('AIO_WP_Security')){
|
| 8 |
|
| 9 |
class AIO_WP_Security{
|
| 10 |
-
var $version = '4.3.8.
|
| 11 |
var $db_version = '1.9';
|
| 12 |
var $plugin_url;
|
| 13 |
var $plugin_path;
|
| 7 |
if (!class_exists('AIO_WP_Security')){
|
| 8 |
|
| 9 |
class AIO_WP_Security{
|
| 10 |
+
var $version = '4.3.8.2';
|
| 11 |
var $db_version = '1.9';
|
| 12 |
var $plugin_url;
|
| 13 |
var $plugin_path;
|
wp-security.php
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: All In One WP Security
|
| 4 |
-
Version: 4.3.8.
|
| 5 |
Plugin URI: https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
|
| 6 |
Author: Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy
|
| 7 |
Author URI: https://www.tipsandtricks-hq.com/
|
| 1 |
<?php
|
| 2 |
/*
|
| 3 |
Plugin Name: All In One WP Security
|
| 4 |
+
Version: 4.3.8.2
|
| 5 |
Plugin URI: https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin
|
| 6 |
Author: Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy
|
| 7 |
Author URI: https://www.tipsandtricks-hq.com/
|
