WP fail2ban - Version 2.1.1

Version Description

  • Minor bugfix.
Download this release

Release Info

Developer invisnet
Plugin Icon 128x128 WP fail2ban
Version 2.1.1
Comparing to
See all releases

Code changes from version 2.1.0 to 2.1.1

Files changed (2) hide show
  1. readme.txt +3 -0
  2. wp-fail2ban.php +2 -2
readme.txt CHANGED
@@ -88,6 +88,9 @@ to the `[wordpress]` section in `jail.local`.
88
 
89
  == Changelog ==
90
 
 
 
 
91
  = 2.1.0 =
92
  * Add support for blocking user enumeration; see `WP_FAIL2BAN_BLOCK_USER_ENUMERATION`
93
  * Add support for CIDR notation in `WP_FAIL2BAN_PROXIES`.
88
 
89
  == Changelog ==
90
 
91
+ = 2.1.1 =
92
+ * Minor bugfix.
93
+
94
  = 2.1.0 =
95
  * Add support for blocking user enumeration; see `WP_FAIL2BAN_BLOCK_USER_ENUMERATION`
96
  * Add support for CIDR notation in `WP_FAIL2BAN_PROXIES`.
wp-fail2ban.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP fail2ban
4
  Plugin URI: https://charles.lecklider.org/wordpress/wp-fail2ban/
5
  Description: Write all login attempts to syslog for integration with fail2ban.
6
- Version: 2.1.0
7
  Author: Charles Lecklider
8
  Author URI: https://charles.lecklider.org/
9
  License: GPL2
@@ -31,7 +31,7 @@ function openlog()
31
  {
32
  \openlog('wordpress('.$_SERVER['HTTP_HOST'].')',
33
  LOG_NDELAY|LOG_PID,
34
- defined(WP_FAIL2BAN_LOG) ? WP_FAIL2BAN_LOG : LOG_AUTH);
35
  }
36
 
37
  function bail()
3
  Plugin Name: WP fail2ban
4
  Plugin URI: https://charles.lecklider.org/wordpress/wp-fail2ban/
5
  Description: Write all login attempts to syslog for integration with fail2ban.
6
+ Version: 2.1.1
7
  Author: Charles Lecklider
8
  Author URI: https://charles.lecklider.org/
9
  License: GPL2
31
  {
32
  \openlog('wordpress('.$_SERVER['HTTP_HOST'].')',
33
  LOG_NDELAY|LOG_PID,
34
+ defined('WP_FAIL2BAN_LOG') ? WP_FAIL2BAN_LOG : LOG_AUTH);
35
  }
36
 
37
  function bail()