Make WordPress Core


Ignore:
Timestamp:
03/28/2019 03:10:24 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Site Health: Use a consistent wording and response code for capability checks.

Props mukesh27 for initial patch.
Fixes #46691.

File:
1 edited

Legend:

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

    r45049 r45050  
    1616
    1717if ( ! current_user_can( 'install_plugins' ) ) {
    18     wp_die( __( 'Sorry, you do not have permission to access site health information.' ), '', array( 'reponse' => 401 ) );
     18    wp_die( __( 'Sorry, you are not allowed to access site health information.' ), '', 403 );
    1919}
    2020
Note: See TracChangeset for help on using the changeset viewer.