Make WordPress Core


Ignore:
Timestamp:
02/19/2018 02:12:41 AM (7 years ago)
Author:
peterwilsoncc
Message:

General: Further improve error messages following [42648].

Props kristastevens, melchoyce.
Fixes #38332 for trunk.

File:
1 edited

Legend:

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

    r42648 r42719  
    1313if ( ! current_user_can( 'list_users' ) ) {
    1414    wp_die(
    15         '<h1>' . __( 'You don&#8217;t have permission to do this.' ) . '</h1>' .
     15        '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' .
    1616        '<p>' . __( 'Sorry, you are not allowed to list users.' ) . '</p>',
    1717        403
     
    142142            if ( is_multisite() && ! is_user_member_of_blog( $id ) ) {
    143143                wp_die(
    144                     '<h1>' . __( 'An error has occurred.' ) . '</h1>' .
     144                    '<h1>' . __( 'Something went wrong.' ) . '</h1>' .
    145145                    '<p>' . __( 'One of the selected users is not a member of this site.' ) . '</p>',
    146146                    403
Note: See TracChangeset for help on using the changeset viewer.