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
This commit is contained in:
Sergey Biryukov 2015-07-27 13:25:25 +00:00
parent 84f900b655
commit bc64ce5094
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ if ( !is_multisite() )
wp_die( __( 'Multisite support is not enabled.' ) ); wp_die( __( 'Multisite support is not enabled.' ) );
if ( ! current_user_can('read') ) 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'; $action = isset( $_POST['action'] ) ? $_POST['action'] : 'splash';

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.