Plugin Directory

Changeset 1827550 for health-check


Ignore:
Timestamp:
02/23/2018 09:36:32 AM (8 years ago)
Author:
Clorith
Message:

1.0.1, fixes a class reference that prevents mail checks from running, and some missing translation references.

Location:
health-check
Files:
30 added
4 edited

Legend:

Unmodified
Added
Removed
  • health-check/trunk/health-check.php

    r1825717 r1827550  
    99 * Description: Checks the health of your WordPress install.
    1010 * Author: The WordPress.org community
    11  * Version: 1.0.0
     11 * Version: 1.0.1
    1212 * Author URI: http://wordpress.org/plugins/health-check/
    1313 * Text Domain: health-check
  • health-check/trunk/includes/class-health-check-files-integrity.php

    r1824246 r1827550  
    171171
    172172        $output   = '<table class="diff"><thead><tr class="diff-sub-title"><th>';
    173         $output  .= 'Original';
     173        $output  .= esc_html__( 'Original', 'health-check' );
    174174        $output  .= '</th><th>';
    175         $output  .= 'Modified';
     175        $output  .= esc_html__( 'Modified', 'health-check' );
    176176        $output  .= '</th></tr></table>';
    177177        $output  .= wp_text_diff( $remote_file_body, $local_file_body, $diff_args );
  • health-check/trunk/pages/tools.php

    r1824259 r1827550  
    1414
    1515    <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>
    1717        <p>
    1818            <?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' ); ?>
     
    2323    </div>
    2424    <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>
    2626        <p>
    2727            <?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  
    44Requires at least: 3.8
    55Tested up to: 4.9
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77
    88== Description ==
     
    3333
    3434== 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.
    3539
    3640= v 1.0.0 =
Note: See TracChangeset for help on using the changeset viewer.