From c8f1bf5a940c68324f324231372547faf88e1151 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 27 Jul 2015 13:24:39 +0000 Subject: [PATCH] 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 --- src/wp-admin/my-sites.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/my-sites.php b/src/wp-admin/my-sites.php index 13539c4087..fafa232932 100644 --- a/src/wp-admin/my-sites.php +++ b/src/wp-admin/my-sites.php @@ -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';