Brute Force Login Protection - Version 1.5.3

Version Description

  • Bugfix
Download this release

Release Info

Developer Jan-Paul Kleemans
Plugin Icon 128x128 Brute Force Login Protection
Version 1.5.3
Comparing to
See all releases

Code changes from version 1.5.2 to 1.5.3

Files changed (2) hide show
  1. brute-force-login-protection.php +3 -3
  2. readme.txt +5 -2
brute-force-login-protection.php CHANGED
@@ -10,7 +10,7 @@ require_once 'includes/htaccess.php';
10
  * Text Domain: brute-force-login-protection
11
  * Author: Fresh-Media
12
  * Author URI: http://fresh-media.nl/
13
- * Version: 1.5.2
14
  * License: GPL2
15
  *
16
  * Copyright 2014 Fresh-Media
@@ -507,7 +507,7 @@ class BruteForceLoginProtection {
507
  * @return void
508
  */
509
  private function __showMessage($message) {
510
- echo '<div class="updated"><p>' . $message . '</p></div>';
511
  }
512
 
513
  /**
@@ -517,7 +517,7 @@ class BruteForceLoginProtection {
517
  * @return void
518
  */
519
  private function __showError($message) {
520
- echo '<div class="error"><p>' . $message . '</p></div>';
521
  }
522
 
523
  }
10
  * Text Domain: brute-force-login-protection
11
  * Author: Fresh-Media
12
  * Author URI: http://fresh-media.nl/
13
+ * Version: 1.5.3
14
  * License: GPL2
15
  *
16
  * Copyright 2014 Fresh-Media
507
  * @return void
508
  */
509
  private function __showMessage($message) {
510
+ echo '<div class="updated"><p>' . esc_html($message) . '</p></div>';
511
  }
512
 
513
  /**
517
  * @return void
518
  */
519
  private function __showError($message) {
520
+ echo '<div class="error"><p>' . esc_html($message) . '</p></div>';
521
  }
522
 
523
  }
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: Jan-Paul Kleemans
3
  Tags: brute force, bruteforce, login, wp-login, protection, shield, security, htaccess, block, ip
4
  Requires at least: 2.7.0
5
- Tested up to: 4.2.2
6
- Stable tag: 1.5.2
7
  License: GPL2
8
 
9
  Protects your website against brute force login attacks using .htaccess
@@ -51,6 +51,9 @@ Brute Force Login Protection will only work if your .htaccess file is writeable
51
  1. Plugin settings page
52
 
53
  == Changelog ==
 
 
 
54
  = 1.5.2 =
55
  * Bugfix
56
 
2
  Contributors: Jan-Paul Kleemans
3
  Tags: brute force, bruteforce, login, wp-login, protection, shield, security, htaccess, block, ip
4
  Requires at least: 2.7.0
5
+ Tested up to: 4.8
6
+ Stable tag: 1.5.3
7
  License: GPL2
8
 
9
  Protects your website against brute force login attacks using .htaccess
51
  1. Plugin settings page
52
 
53
  == Changelog ==
54
+ = 1.5.3 =
55
+ * Bugfix
56
+
57
  = 1.5.2 =
58
  * Bugfix
59