Login Security Solution - Version 0.25.0

Version Description

  • Load text domain for password policy on password reset page.
  • Have password policy mention that it can't contain words related to the user or the website.
Download this release

Release Info

Developer convissor
Plugin Icon wp plugin Login Security Solution
Version 0.25.0
Comparing to
See all releases

Code changes from version 0.24.0 to 0.25.0

Files changed (2) hide show
  1. login-security-solution.php +3 -2
  2. readme.txt +6 -1
login-security-solution.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Requires very strong passwords, repels brute force login attacks, prevents login information disclosures, expires idle sessions, notifies admins of attacks and breaches, permits administrators to disable logins for maintenance or emergency reasons and reset all passwords.
7
  *
8
  * Plugin URI: http://wordpress.org/extend/plugins/login-security-solution/
9
- * Version: 0.24.0
10
  * Author: Daniel Convissor
11
  * Author URI: http://www.analysisandsolutions.com/
12
  * License: GPLv2
@@ -640,7 +640,8 @@ class login_security_solution {
640
  $policy = 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).';
641
 
642
  if ($original == $policy) {
643
- $translated = sprintf($this->hsc_utf8(__("The password should either be: A) at least %d characters long and contain upper and lower case letters (except languages that only have one case) plus numbers and punctuation, or B) at least %d characters long.", self::ID)), $this->options['pw_length'], $this->options['pw_complexity_exemption_length']);
 
644
  }
645
 
646
  return $translated;
6
  * Description: Requires very strong passwords, repels brute force login attacks, prevents login information disclosures, expires idle sessions, notifies admins of attacks and breaches, permits administrators to disable logins for maintenance or emergency reasons and reset all passwords.
7
  *
8
  * Plugin URI: http://wordpress.org/extend/plugins/login-security-solution/
9
+ * Version: 0.25.0
10
  * Author: Daniel Convissor
11
  * Author URI: http://www.analysisandsolutions.com/
12
  * License: GPLv2
640
  $policy = 'Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).';
641
 
642
  if ($original == $policy) {
643
+ $this->load_plugin_textdomain();
644
+ $translated = sprintf($this->hsc_utf8(__("The password should either be: A) at least %d characters long and contain upper and lower case letters (except languages that only have one case) plus numbers and punctuation, or B) at least %d characters long. The password can not contain words related to you or this website.", self::ID)), $this->options['pw_length'], $this->options['pw_complexity_exemption_length']);
645
  }
646
 
647
  return $translated;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=danie
4
  Tags: login, password, passwords, strength, strong, strong passwords, password strength, idle, timeout, maintenance, security, attack, hack, lock, lockdown, ban, brute force, brute, force, authentication, auth, cookie, users
5
  Requires at least: 3.3
6
  Tested up to: 3.4.1
7
- Stable tag: 0.24.0
8
 
9
  Security against brute force attacks by tracking IP, name, password; requiring very strong passwords. Idle timeout. Maintenance mode lockdown.
10
 
@@ -342,6 +342,11 @@ implementation, use the script I made for generating all of the .mo files:
342
 
343
  == Changelog ==
344
 
 
 
 
 
 
345
  = 0.24.0 =
346
  * Keep the password strength indicator from being enabled.
347
  * Narrow down when the password policy text filter is enabled.
4
  Tags: login, password, passwords, strength, strong, strong passwords, password strength, idle, timeout, maintenance, security, attack, hack, lock, lockdown, ban, brute force, brute, force, authentication, auth, cookie, users
5
  Requires at least: 3.3
6
  Tested up to: 3.4.1
7
+ Stable tag: 0.25.0
8
 
9
  Security against brute force attacks by tracking IP, name, password; requiring very strong passwords. Idle timeout. Maintenance mode lockdown.
10
 
342
 
343
  == Changelog ==
344
 
345
+ = 0.25.0 =
346
+ * Load text domain for password policy on password reset page.
347
+ * Have password policy mention that it can't contain words related to
348
+ the user or the website.
349
+
350
  = 0.24.0 =
351
  * Keep the password strength indicator from being enabled.
352
  * Narrow down when the password policy text filter is enabled.