From bc64ce5094103e62a02f16480d30fdb2553f76d1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 27 Jul 2015 13:25:25 +0000 Subject: [PATCH] Merge two similar strings about insufficient permissions. props pavelevap. fixes #33140. Built from https://develop.svn.wordpress.org/trunk@33442 git-svn-id: http://core.svn.wordpress.org/trunk@33409 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/my-sites.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/my-sites.php b/wp-admin/my-sites.php index 13539c4087..fafa232932 100644 --- a/wp-admin/my-sites.php +++ b/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'; diff --git a/wp-includes/version.php b/wp-includes/version.php index a0198e7bdd..b67901389b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta4-33441'; +$wp_version = '4.3-beta4-33442'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.