Changeset 2164849 for health-check
- Timestamp:
- 09/28/2019 12:01:09 PM (6 years ago)
- Location:
- health-check
- Files:
-
- 41 added
- 3 edited
-
tags/1.4.2 (added)
-
tags/1.4.2/assets (added)
-
tags/1.4.2/assets/css (added)
-
tags/1.4.2/assets/css/health-check-troubleshooting-mode.css (added)
-
tags/1.4.2/assets/css/health-check.css (added)
-
tags/1.4.2/assets/javascript (added)
-
tags/1.4.2/assets/javascript/clipboard.min.js (added)
-
tags/1.4.2/assets/javascript/health-check.js (added)
-
tags/1.4.2/assets/mu-plugin (added)
-
tags/1.4.2/assets/mu-plugin/health-check-troubleshooting-mode.php (added)
-
tags/1.4.2/changelog.txt (added)
-
tags/1.4.2/health-check.php (added)
-
tags/1.4.2/includes (added)
-
tags/1.4.2/includes/class-health-check-auto-updates.php (added)
-
tags/1.4.2/includes/class-health-check-dashboard-widget.php (added)
-
tags/1.4.2/includes/class-health-check-debug-data.php (added)
-
tags/1.4.2/includes/class-health-check-loopback.php (added)
-
tags/1.4.2/includes/class-health-check-site-status.php (added)
-
tags/1.4.2/includes/class-health-check-troubleshoot.php (added)
-
tags/1.4.2/includes/class-health-check-updates.php (added)
-
tags/1.4.2/includes/class-health-check-wp-cli.php (added)
-
tags/1.4.2/includes/class-health-check-wp-cron.php (added)
-
tags/1.4.2/includes/class-health-check.php (added)
-
tags/1.4.2/includes/compat.php (added)
-
tags/1.4.2/includes/tools (added)
-
tags/1.4.2/includes/tools/class-health-check-files-integrity.php (added)
-
tags/1.4.2/includes/tools/class-health-check-mail-check.php (added)
-
tags/1.4.2/includes/tools/class-health-check-plugin-compatibility.php (added)
-
tags/1.4.2/includes/tools/class-health-check-tool.php (added)
-
tags/1.4.2/modals (added)
-
tags/1.4.2/modals/diff.php (added)
-
tags/1.4.2/modals/js-result-warnings.php (added)
-
tags/1.4.2/pages (added)
-
tags/1.4.2/pages/debug-data.php (added)
-
tags/1.4.2/pages/phpinfo.php (added)
-
tags/1.4.2/pages/site-health-header.php (added)
-
tags/1.4.2/pages/site-status.php (added)
-
tags/1.4.2/pages/tools.php (added)
-
tags/1.4.2/pages/troubleshoot.php (added)
-
tags/1.4.2/readme.txt (added)
-
tags/1.4.2/uninstall.php (added)
-
trunk/health-check.php (modified) (2 diffs)
-
trunk/includes/class-health-check-debug-data.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
health-check/trunk/health-check.php
r2164837 r2164849 10 10 * Description: Checks the health of your WordPress install. 11 11 * Author: The WordPress.org community 12 * Version: 1.4. 112 * Version: 1.4.2 13 13 * Author URI: https://wordpress.org/plugins/health-check/ 14 14 * Text Domain: health-check … … 36 36 37 37 // Set the plugin version. 38 define( 'HEALTH_CHECK_PLUGIN_VERSION', '1.4. 1' );38 define( 'HEALTH_CHECK_PLUGIN_VERSION', '1.4.2' ); 39 39 40 40 // Set the plugin file. -
health-check/trunk/includes/class-health-check-debug-data.php
r2164837 r2164849 702 702 'debug' => $imagick_loaded, 703 703 ); 704 705 $cookies = wp_unslash( $_COOKIE ); 706 $timeout = 10; 707 $headers = array( 708 'Cache-Control' => 'no-cache', 709 'X-WP-Nonce' => wp_create_nonce( 'wp_rest' ), 710 ); 711 if ( isset( $_SERVER['PHP_AUTH_USER'] ) && isset( $_SERVER['PHP_AUTH_PW'] ) ) { 712 $headers['Authorization'] = 'Basic ' . base64_encode( wp_unslash( $_SERVER['PHP_AUTH_USER'] ) . ':' . wp_unslash( $_SERVER['PHP_AUTH_PW'] ) ); 713 } 704 714 705 715 $server_request = wp_remote_get( site_url(), compact( 'cookies', 'headers', 'timeout' ) ); -
health-check/trunk/readme.txt
r2164837 r2164849 5 5 Requires PHP: 5.2 6 6 Tested up to: 5.2 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = v1.4.2 = 53 * Fix missing headers for a loopback request in the debug section 54 52 55 = v1.4.1 = 53 56 * Fixed SQL version checks for various MariaDB installs.
Note: See TracChangeset
for help on using the changeset viewer.