Merge two similar strings about insufficient permissions.

props pavelevap.
fixes #33140.

git-svn-id: https://develop.svn.wordpress.org/trunk@33442 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-07-27 13:24:39 +00:00
parent faecac7803
commit c8f1bf5a94

View File

@ -13,7 +13,7 @@ if ( !is_multisite() )
wp_die( __( 'Multisite support is not enabled.' ) );
if ( ! current_user_can('read') )
wp_die( __( 'You do not have sufficient permissions to view this page.' ) );
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
$action = isset( $_POST['action'] ) ? $_POST['action'] : 'splash';