Health Check - Version 1.5.1

Version Description

Download this release

Release Info

Developer Clorith
Plugin Icon 128x128 Health Check
Version 1.5.1
Comparing to
See all releases

Code changes from version 1.5.0 to 1.5.1

health-check.php CHANGED
@@ -9,7 +9,7 @@
9
  * Plugin URI: https://wordpress.org/plugins/health-check/
10
  * Description: Checks the health of your WordPress install.
11
  * Author: The WordPress.org community
12
- * Version: 1.5.0
13
  * Author URI: https://wordpress.org/plugins/health-check/
14
  * Text Domain: health-check
15
  */
@@ -24,7 +24,7 @@ if ( ! defined( 'ABSPATH' ) ) {
24
  }
25
 
26
  // Set the plugin version.
27
- define( 'HEALTH_CHECK_PLUGIN_VERSION', '1.5.0' );
28
 
29
  // Set the plugin file.
30
  define( 'HEALTH_CHECK_PLUGIN_FILE', __FILE__ );
9
  * Plugin URI: https://wordpress.org/plugins/health-check/
10
  * Description: Checks the health of your WordPress install.
11
  * Author: The WordPress.org community
12
+ * Version: 1.5.1
13
  * Author URI: https://wordpress.org/plugins/health-check/
14
  * Text Domain: health-check
15
  */
24
  }
25
 
26
  // Set the plugin version.
27
+ define( 'HEALTH_CHECK_PLUGIN_VERSION', '1.5.1' );
28
 
29
  // Set the plugin file.
30
  define( 'HEALTH_CHECK_PLUGIN_FILE', __FILE__ );
mu-plugin/health-check-troubleshooting-mode.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Health Check Troubleshooting Mode
4
  Description: Conditionally disabled themes or plugins on your site for a given session, used to rule out conflicts during troubleshooting.
5
- Version: 1.8.0
6
  */
7
 
8
  if ( ! defined( 'ABSPATH' ) ) {
@@ -10,7 +10,7 @@ if ( ! defined( 'ABSPATH' ) ) {
10
  }
11
 
12
  // Set the MU plugin version.
13
- define( 'HEALTH_CHECK_TROUBLESHOOTING_MODE_PLUGIN_VERSION', '1.8.0' );
14
 
15
  class Health_Check_Troubleshooting_MU {
16
  private $disable_hash = null;
@@ -985,7 +985,7 @@ class Health_Check_Troubleshooting_MU {
985
 
986
  // Make sure the Health_Check_Loopback class is available to us, in case the primary plugin is disabled.
987
  if ( ! method_exists( 'Health_Check_Loopback', 'can_perform_loopback' ) ) {
988
- $plugin_file = trailingslashit( WP_PLUGIN_DIR ) . 'health-check/includes/class-health-check-loopback.php';
989
 
990
  // Make sure the file exists, in case someone deleted the plugin manually, we don't want any errors.
991
  if ( ! file_exists( $plugin_file ) ) {
2
  /*
3
  Plugin Name: Health Check Troubleshooting Mode
4
  Description: Conditionally disabled themes or plugins on your site for a given session, used to rule out conflicts during troubleshooting.
5
+ Version: 1.8.1
6
  */
7
 
8
  if ( ! defined( 'ABSPATH' ) ) {
10
  }
11
 
12
  // Set the MU plugin version.
13
+ define( 'HEALTH_CHECK_TROUBLESHOOTING_MODE_PLUGIN_VERSION', '1.8.1' );
14
 
15
  class Health_Check_Troubleshooting_MU {
16
  private $disable_hash = null;
985
 
986
  // Make sure the Health_Check_Loopback class is available to us, in case the primary plugin is disabled.
987
  if ( ! method_exists( 'Health_Check_Loopback', 'can_perform_loopback' ) ) {
988
+ $plugin_file = trailingslashit( WP_PLUGIN_DIR ) . 'health-check/HealthCheck/class-health-check-loopback.php';
989
 
990
  // Make sure the file exists, in case someone deleted the plugin manually, we don't want any errors.
991
  if ( ! file_exists( $plugin_file ) ) {
readme.txt CHANGED
@@ -3,8 +3,8 @@ Tags: health check
3
  Contributors: wordpressdotorg, westi, pento, Clorith
4
  Requires at least: 4.4
5
  Requires PHP: 5.6
6
- Tested up to: 6.0
7
- Stable tag: 1.5.0
8
  License: GPLv2
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -49,6 +49,9 @@ At this time, the plugin has been tested with every version of PHP from 5.2 thro
49
 
50
  == Changelog ==
51
 
 
 
 
52
  = v1.5.0 (2022-09-10) =
53
  * Added a custom filter for the Health Check plugin PHP Compatibility check.
54
  * Added functions which will try to disable cache solutions during troubleshooting.
3
  Contributors: wordpressdotorg, westi, pento, Clorith
4
  Requires at least: 4.4
5
  Requires PHP: 5.6
6
+ Tested up to: 6.1
7
+ Stable tag: 1.5.1
8
  License: GPLv2
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
49
 
50
  == Changelog ==
51
 
52
+ = v1.5.1 (2022-11-02) =
53
+ * Fixed a bug where if Health Check was disabled during troubleshooting, you would need to force-enable/disable other plugins or themes.
54
+
55
  = v1.5.0 (2022-09-10) =
56
  * Added a custom filter for the Health Check plugin PHP Compatibility check.
57
  * Added functions which will try to disable cache solutions during troubleshooting.