Limit Login Attempts Reloaded - Version 2.22.1

Version Description

  • IP added to the email subject.
Download this release

Release Info

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

Code changes from version 2.22.0 to 2.22.1

core/LimitLoginAttempts.php CHANGED
@@ -986,7 +986,11 @@ class Limit_Login_Attempts {
986
  $blogname = $this->use_local_options ? get_option( 'blogname' ) : get_site_option( 'site_name' );
987
  $blogname = htmlspecialchars_decode( $blogname, ENT_QUOTES );
988
 
989
- $subject = sprintf( __( "[%s] Failed WordPress login attempt", 'limit-login-attempts-reloaded' ), $blogname );
 
 
 
 
990
 
991
  $message = __(
992
  '<p>Hello%1$s,</p>
986
  $blogname = $this->use_local_options ? get_option( 'blogname' ) : get_site_option( 'site_name' );
987
  $blogname = htmlspecialchars_decode( $blogname, ENT_QUOTES );
988
 
989
+ $subject = sprintf(
990
+ __( "[%s] Failed WordPress login attempt by IP %s", 'limit-login-attempts-reloaded' ),
991
+ $blogname,
992
+ $ip
993
+ );
994
 
995
  $message = __(
996
  '<p>Hello%1$s,</p>
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.22.0
9
 
10
  Copyright 2008 - 2012 Johan Eenfeldt, 2016 - 2021 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.22.1
9
 
10
  Copyright 2008 - 2012 Johan Eenfeldt, 2016 - 2021 Limit Login Attempts Reloaded
11
  */
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.7
7
- Stable tag: 2.22.0
8
 
9
  Reloaded version of the original Limit Login Attempts plugin for Login Protection by a team of WordPress developers. GDPR compliant.
10
 
@@ -98,6 +98,9 @@ Please follow this link: <a href="https://www.limitloginattempts.com/resources/"
98
 
99
  == Changelog ==
100
 
 
 
 
101
  = 2.22.0 =
102
  * Added support of CIDR notation for specifying IP ranges.
103
  * Texts updated.
4
  Tags: brute force, login, security, firewall, protection
5
  Requires at least: 3.0
6
  Tested up to: 5.7
7
+ Stable tag: 2.22.1
8
 
9
  Reloaded version of the original Limit Login Attempts plugin for Login Protection by a team of WordPress developers. GDPR compliant.
10
 
98
 
99
  == Changelog ==
100
 
101
+ = 2.22.1 =
102
+ * IP added to the email subject.
103
+
104
  = 2.22.0 =
105
  * Added support of CIDR notation for specifying IP ranges.
106
  * Texts updated.