Changeset 1827550 for health-check
- Timestamp:
- 02/23/2018 09:36:32 AM (8 years ago)
- Location:
- health-check
- Files:
-
- 30 added
- 4 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/css (added)
-
tags/1.0.1/assets/css/health-check.css (added)
-
tags/1.0.1/assets/javascript (added)
-
tags/1.0.1/assets/javascript/health-check.js (added)
-
tags/1.0.1/assets/mu-plugin (added)
-
tags/1.0.1/assets/mu-plugin/health-check-disable-plugins.php (added)
-
tags/1.0.1/changelog.txt (added)
-
tags/1.0.1/health-check.php (added)
-
tags/1.0.1/includes (added)
-
tags/1.0.1/includes/class-health-check-auto-updates.php (added)
-
tags/1.0.1/includes/class-health-check-debug-data.php (added)
-
tags/1.0.1/includes/class-health-check-files-integrity.php (added)
-
tags/1.0.1/includes/class-health-check-loopback.php (added)
-
tags/1.0.1/includes/class-health-check-mail-check.php (added)
-
tags/1.0.1/includes/class-health-check-troubleshoot.php (added)
-
tags/1.0.1/includes/class-health-check-wp-cron.php (added)
-
tags/1.0.1/modals (added)
-
tags/1.0.1/modals/backup-warning.php (added)
-
tags/1.0.1/modals/diff.php (added)
-
tags/1.0.1/modals/js-result-warnings.php (added)
-
tags/1.0.1/pages (added)
-
tags/1.0.1/pages/debug-data.php (added)
-
tags/1.0.1/pages/health-check.php (added)
-
tags/1.0.1/pages/phpinfo.php (added)
-
tags/1.0.1/pages/tools.php (added)
-
tags/1.0.1/pages/troubleshoot.php (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/uninstall.php (added)
-
trunk/health-check.php (modified) (1 diff)
-
trunk/includes/class-health-check-files-integrity.php (modified) (1 diff)
-
trunk/pages/tools.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
health-check/trunk/health-check.php
r1825717 r1827550 9 9 * Description: Checks the health of your WordPress install. 10 10 * Author: The WordPress.org community 11 * Version: 1.0. 011 * Version: 1.0.1 12 12 * Author URI: http://wordpress.org/plugins/health-check/ 13 13 * Text Domain: health-check -
health-check/trunk/includes/class-health-check-files-integrity.php
r1824246 r1827550 171 171 172 172 $output = '<table class="diff"><thead><tr class="diff-sub-title"><th>'; 173 $output .= 'Original';173 $output .= esc_html__( 'Original', 'health-check' ); 174 174 $output .= '</th><th>'; 175 $output .= 'Modified';175 $output .= esc_html__( 'Modified', 'health-check' ); 176 176 $output .= '</th></tr></table>'; 177 177 $output .= wp_text_diff( $remote_file_body, $local_file_body, $diff_args ); -
health-check/trunk/pages/tools.php
r1824259 r1827550 14 14 15 15 <div class="notice notice-info inline"> 16 <h2><?php esc_html_e( 'File Integrity' ); ?></h2>16 <h2><?php esc_html_e( 'File Integrity', 'health-check' ); ?></h2> 17 17 <p> 18 18 <?php _e( 'The File Integrity checks all the core files with the <code>checksums</code> provided by the WordPress API to see if they are intact. If there are changes you will be able to make a Diff between the files hosted on WordPress.org and your installation to see what has been changed.', 'health-check' ); ?> … … 23 23 </div> 24 24 <div class="notice notice-info inline"> 25 <h2><?php esc_html_e( 'Mail Check' ); ?></h2>25 <h2><?php esc_html_e( 'Mail Check', 'health-check' ); ?></h2> 26 26 <p> 27 27 <?php _e( 'The Mail Check will invoke the <code>wp_mail()</code> function and check if it succeeds. We will use the E-mail address you have set up, but you can change it below if you like.', 'health-check' ); ?> -
health-check/trunk/readme.txt
r1825717 r1827550 4 4 Requires at least: 3.8 5 5 Tested up to: 4.9 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 8 8 == Description == … … 33 33 34 34 == Changelog == 35 36 = v 1.0.1 = 37 * Fixed email tester having the wrong class reference, preventing it from running. 38 * Add some missing text domains preventing full translations. 35 39 36 40 = v 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.