Skip to content

Commit a4da1ca

Browse files
Site Health: Correct test result status for the HTTPS test.
The supported status values for Site Health tests are `good`, `recommended`, and `critical`. Follow-up to [50660]. Props TimothyBlynJacobs. Merges [50710] to the 5.7 branch. Fixes #52783. git-svn-id: https://develop.svn.wordpress.org/branches/5.7@50711 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 1556c8c commit a4da1ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wp-admin/includes/class-wp-site-health.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,7 @@ public function get_test_https_status() {
15281528
if ( ! wp_is_using_https() ) {
15291529
// If the website is not using HTTPS, provide more information about whether it is supported and how it can
15301530
// be enabled.
1531-
$result['status'] = 'warning';
1531+
$result['status'] = 'recommended';
15321532
$result['label'] = __( 'Your website does not use HTTPS' );
15331533

15341534
if ( wp_is_site_url_using_https() ) {

0 commit comments

Comments
 (0)