Changeset 50530
- Timestamp:
- 03/13/2021 10:57:27 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r50234 r50530 1874 1874 <?php else : ?> 1875 1875 <p> 1876 <?php if ( $issue_counts['critical'] > 0 ) : ?> 1876 <?php if ( $issues_total <= 0 ) : ?> 1877 <?php _e( 'Great job! Your site currently passes all site health checks.' ); ?> 1878 <?php elseif ( 1 === (int) $issue_counts['critical'] ) : ?> 1879 <?php _e( 'Your site has a critical issue that should be addressed as soon as possible to improve its performance and security.' ); ?> 1880 <?php elseif ( $issue_counts['critical'] > 1 ) : ?> 1877 1881 <?php _e( 'Your site has critical issues that should be addressed as soon as possible to improve its performance and security.' ); ?> 1878 <?php elseif ( $issues_total <= 0) : ?>1879 <?php _e( ' Great job! Your site currently passes all site health checks.' ); ?>1882 <?php elseif ( 1 === (int) $issue_counts['recommended'] ) : ?> 1883 <?php _e( 'Your site’s health is looking good, but there is still one thing you can do to improve its performance and security.' ); ?> 1880 1884 <?php else : ?> 1881 1885 <?php _e( 'Your site’s health is looking good, but there are still some things you can do to improve its performance and security.' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.