Limit Login Attempts Reloaded - Version 2.10.1

Version Description

  • Fixed: GDPR compliance option could not be selected on the multisite installations.
Download this release

Release Info

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

Code changes from version 2.10.0 to 2.10.1

limit-login-attempts-reloaded.php CHANGED
@@ -5,7 +5,7 @@ Description: Limit the rate of login attempts, including by way of cookies and f
5
  Author: WPChef
6
  Author URI: https://wpchef.org
7
  Text Domain: limit-login-attempts-reloaded
8
- Version: 2.10.0
9
 
10
  Copyright 2008 - 2012 Johan Eenfeldt, 2016 - 2019 WPChef
11
  */
5
  Author: WPChef
6
  Author URI: https://wpchef.org
7
  Text Domain: limit-login-attempts-reloaded
8
+ Version: 2.10.1
9
 
10
  Copyright 2008 - 2012 Johan Eenfeldt, 2016 - 2019 WPChef
11
  */
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: wpchefgadget
3
  Tags: brute force, login, security, GDPR, protection
4
  Requires at least: 3.0
5
- Tested up to: 5.3
6
- Stable tag: 2.10.0
7
 
8
  Reloaded version of the original Limit Login Attempts plugin for Login Protection by a team of WordPress developers. GDPR compliant.
9
 
@@ -51,6 +51,9 @@ Based on the original code from Limit Login Attemps plugin by Johan Eenfeldt.
51
 
52
  == Changelog ==
53
 
 
 
 
54
  = 2.10.0 =
55
  * Debug information has been added for better support.
56
 
2
  Contributors: wpchefgadget
3
  Tags: brute force, login, security, GDPR, protection
4
  Requires at least: 3.0
5
+ Tested up to: 5.3.2
6
+ Stable tag: 2.10.1
7
 
8
  Reloaded version of the original Limit Login Attempts plugin for Login Protection by a team of WordPress developers. GDPR compliant.
9
 
51
 
52
  == Changelog ==
53
 
54
+ = 2.10.1 =
55
+ * Fixed: GDPR compliance option could not be selected on the multisite installations.
56
+
57
  = 2.10.0 =
58
  * Debug information has been added for better support.
59
 
views/tab-debug.php CHANGED
@@ -33,6 +33,7 @@ foreach ($server as $server_key => $ip ) {
33
  <th scope="row" valign="top"><?php echo __( 'Debug info', 'limit-login-attempts-reloaded' ); ?></th>
34
  <td>
35
  <textarea cols="70" rows="10" onclick="this.select()" readonly><?php echo esc_textarea($debug_info); ?></textarea>
 
36
  </td>
37
  </tr>
38
  </table>
33
  <th scope="row" valign="top"><?php echo __( 'Debug info', 'limit-login-attempts-reloaded' ); ?></th>
34
  <td>
35
  <textarea cols="70" rows="10" onclick="this.select()" readonly><?php echo esc_textarea($debug_info); ?></textarea>
36
+ <p class="description"><?php _e( 'Copy the contents of the window and provide to support.', 'limit-login-attempts-reloaded' ); ?></p>
37
  </td>
38
  </tr>
39
  </table>
views/tab-settings.php CHANGED
@@ -6,9 +6,9 @@ if( !defined( 'ABSPATH' ) ) exit();
6
  * @var $this Limit_Login_Attempts
7
  */
8
 
9
- $gdpr = $this->get_option( 'gdpr', 0 );
10
 
11
- $lockouts_total = $this->get_option( 'lockouts_total', 0 );
12
  $lockouts = $this->get_option( 'login_lockouts' );
13
  $lockouts_now = is_array( $lockouts ) ? count( $lockouts ) : 0;
14
 
6
  * @var $this Limit_Login_Attempts
7
  */
8
 
9
+ $gdpr = $this->get_option( 'gdpr' );
10
 
11
+ $lockouts_total = $this->get_option( 'lockouts_total' );
12
  $lockouts = $this->get_option( 'login_lockouts' );
13
  $lockouts_now = is_array( $lockouts ) ? count( $lockouts ) : 0;
14