Limit Login Attempts Reloaded - Version 2.24.1

Version Description

  • Fixed E_ERROR occurring in rare cases when the log table is corrupted.
Download this release

Release Info

Developer wpchefgadget
Plugin Icon 128x128 Limit Login Attempts Reloaded
Version 2.24.1
Comparing to
See all releases

Code changes from version 2.24.0 to 2.24.1

core/LimitLoginAttempts.php CHANGED
@@ -1514,6 +1514,8 @@ into a must-use (MU) folder. You can read more <a href="%s" target="_blank">here
1514
  if( is_array( $log ) && isset( $log[ $ip ] ) ) {
1515
  foreach ( $log[ $ip ] as $user_login => &$data ) {
1516
 
 
 
1517
  $data['unlocked'] = true;
1518
  }
1519
  }
1514
  if( is_array( $log ) && isset( $log[ $ip ] ) ) {
1515
  foreach ( $log[ $ip ] as $user_login => &$data ) {
1516
 
1517
+ if( !is_array( $data ) ) $data = array();
1518
+
1519
  $data['unlocked'] = true;
1520
  }
1521
  }
limit-login-attempts-reloaded.php CHANGED
@@ -5,7 +5,7 @@ Description: Limit the rate of login attempts for each IP address.
5
  Author: Limit Login Attempts Reloaded
6
  Author URI: https://www.limitloginattempts.com/
7
  Text Domain: limit-login-attempts-reloaded
8
- Version: 2.24.0
9
 
10
  Copyright 2008 - 2012 Johan Eenfeldt, 2016 - 2022 Limit Login Attempts Reloaded
11
  */
5
  Author: Limit Login Attempts Reloaded
6
  Author URI: https://www.limitloginattempts.com/
7
  Text Domain: limit-login-attempts-reloaded
8
+ Version: 2.24.1
9
 
10
  Copyright 2008 - 2012 Johan Eenfeldt, 2016 - 2022 Limit Login Attempts Reloaded
11
  */
readme.txt CHANGED
@@ -4,9 +4,9 @@ Donate link: https://www.paypal.com/donate?hosted_button_id=FKD4MYFCMNVQQ
4
  Tags: brute force, login, security, firewall, protection
5
  Requires at least: 3.0
6
  Tested up to: 5.9
7
- Stable tag: 2.24.0
8
 
9
- Reloaded version of the original Limit Login Attempts plugin for Login Protection by a team of WordPress developers. GDPR compliant.
10
 
11
  == Description ==
12
 
@@ -98,6 +98,9 @@ Please follow this link: <a href="https://www.limitloginattempts.com/resources/"
98
 
99
  == Changelog ==
100
 
 
 
 
101
  = 2.24.0 =
102
  * Protection increased: bots can't parse lockout messages anymore.
103
 
4
  Tags: brute force, login, security, firewall, protection
5
  Requires at least: 3.0
6
  Tested up to: 5.9
7
+ Stable tag: 2.24.1
8
 
9
+ Block excessive login attempts and protect your site against brute force attacks. Simple, yet powerful tools to improve site performance.
10
 
11
  == Description ==
12
 
98
 
99
  == Changelog ==
100
 
101
+ = 2.24.1 =
102
+ * Fixed E_ERROR occurring in rare cases when the log table is corrupted.
103
+
104
  = 2.24.0 =
105
  * Protection increased: bots can't parse lockout messages anymore.
106