SiteGuard WP Plugin - Version 1.7.3

Version Description

  • Fix an issue where password reset could not be sent from the management page when CAPTCHA was enabled
Download this release

Release Info

Developer jp-secure
Plugin Icon 128x128 SiteGuard WP Plugin
Version 1.7.3
Comparing to
See all releases

Code changes from version 1.7.2 to 1.7.3

Files changed (3) hide show
  1. classes/siteguard-captcha.php +1 -1
  2. readme.txt +4 -2
  3. siteguard.php +1 -1
classes/siteguard-captcha.php CHANGED
@@ -9,7 +9,7 @@ class SiteGuard_CAPTCHA extends SiteGuard_Base {
9
 
10
  function __construct() {
11
  global $siteguard_config;
12
- if ( '1' == $siteguard_config->get( 'captcha_enable' ) && 'xmlrpc.php' != basename( $_SERVER['SCRIPT_NAME'] ) ) {
13
  $this->captcha = new SiteGuardReallySimpleCaptcha();
14
 
15
  add_filter( 'shake_error_codes', array( $this, 'handler_shake_error_codes' ) );
9
 
10
  function __construct() {
11
  global $siteguard_config;
12
+ if ( '1' == $siteguard_config->get( 'captcha_enable' ) && 'xmlrpc.php' != basename( $_SERVER['SCRIPT_NAME'] ) && ! is_admin() ) {
13
  $this->captcha = new SiteGuardReallySimpleCaptcha();
14
 
15
  add_filter( 'shake_error_codes', array( $this, 'handler_shake_error_codes' ) );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: jp-secure
3
  Donate link: -
4
  Tags: security, waf, brute force, password list, login lock, login alert, captcha, pingback, fail once
5
  Requires at least: 3.9
6
- Tested up to: 6.0
7
- Stable tag: 1.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -106,6 +106,8 @@ If you have created your own language pack, or have an update of an existing one
106
  [Japanese Page](https://www.jp-secure.com/siteguard_wp_plugin/faq/)
107
 
108
  == Changelog ==
 
 
109
  = 1.7.2 =
110
  * Reviewed and modified source code related to security
111
  = 1.7.1 =
3
  Donate link: -
4
  Tags: security, waf, brute force, password list, login lock, login alert, captcha, pingback, fail once
5
  Requires at least: 3.9
6
+ Tested up to: 6.1
7
+ Stable tag: 1.7.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
106
  [Japanese Page](https://www.jp-secure.com/siteguard_wp_plugin/faq/)
107
 
108
  == Changelog ==
109
+ = 1.7.3 =
110
+ * Fix an issue where password reset could not be sent from the management page when CAPTCHA was enabled
111
  = 1.7.2 =
112
  * Reviewed and modified source code related to security
113
  = 1.7.1 =
siteguard.php CHANGED
@@ -7,7 +7,7 @@ Author: JP-Secure
7
  Author URI: https://www.eg-secure.co.jp/
8
  Text Domain: siteguard
9
  Domain Path: /languages/
10
- Version: 1.7.2
11
  */
12
 
13
  /*
7
  Author URI: https://www.eg-secure.co.jp/
8
  Text Domain: siteguard
9
  Domain Path: /languages/
10
+ Version: 1.7.3
11
  */
12
 
13
  /*