Make WordPress Core

Ticket #33679: 33679.diff

File 33679.diff, 1.6 KB (added by kraftbj, 9 years ago)

original props ericlewis. Modified to merge strings where applicable.

  • src/wp-admin/users.php

     
    1010require_once( dirname( __FILE__ ) . '/admin.php' );
    1111
    1212if ( ! current_user_can( 'list_users' ) )
    13         wp_die( __( 'Cheatin’ uh?' ), 403 );
     13        wp_die(
     14                '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     15                '<p>' . __( 'You are not allowed to browse users.' ) . '</p>',
     16                403 );
    1417
    1518$wp_list_table = _get_list_table('WP_Users_List_Table');
    1619$pagenum = $wp_list_table->get_pagenum();
     
    127130                }
    128131
    129132                // If the user doesn't already belong to the blog, bail.
    130                 if ( is_multisite() && !is_user_member_of_blog( $id ) )
    131                         wp_die( __( 'Cheatin&#8217; uh?' ), 403 );
     133                if ( is_multisite() && !is_user_member_of_blog( $id ) ) {
     134                        wp_die(
     135                                '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
     136                                '<p>' . __( 'One of the selected users in not a member of this site.' ) . '</p>',
     137                                403 );
     138                }
    132139
    133140                $user = get_userdata( $id );
    134141                $user->set_role($_REQUEST['new_role']);
  • src/wp-includes/class-wp-xmlrpc-server.php

     
    24112411                do_action( 'xmlrpc_call', 'wp.getUsers' );
    24122412
    24132413                if ( ! current_user_can( 'list_users' ) )
    2414                         return new IXR_Error( 401, __( 'Sorry, you cannot list users.' ) );
     2414                        return new IXR_Error( 401, __( 'You are not allowed to browse users.' ) );
    24152415
    24162416                $query = array( 'fields' => 'all_with_meta' );
    24172417