Make WordPress Core

Changeset 54196


Ignore:
Timestamp:
09/17/2022 11:49:10 PM (9 months ago)
Author:
Clorith
Message:

Site Health: Improve the description for Authorization header checks.

Previously the description left the user stuck with no path forward if flushing their permalinks was not enough.

This change givers a clearer description of what approving an application may involve (allowing these to connect to the users site), but also an additional step towards resolution if flushing permalinks are not enough; pointing them towards their host.

Props Presskopp, webcommsat.
Fixes #54508.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-site-health.php

    r54169 r54196  
    22482248            'description' => sprintf(
    22492249                '<p>%s</p>',
    2250                 __( 'The Authorization header comes from the third-party applications you approve. Without it, those apps cannot connect to your site.' )
     2250                __( 'The Authorization header is used by third-party applications you have approved for this site. Without this header, those apps cannot connect to your site.' )
    22512251            ),
    22522252            'actions'     => '',
     
    22622262        }
    22632263
    2264         $result['status'] = 'recommended';
     2264        $result['status']       = 'recommended';
     2265        $result['description'] .= sprintf(
     2266            '<p>%s</p>',
     2267            __( 'If you are still seeing this warning after having tried the actions below, you may need to contact your hosting provider for further assistance.' )
     2268        );
    22652269
    22662270        if ( ! function_exists( 'got_mod_rewrite' ) ) {
Note: See TracChangeset for help on using the changeset viewer.