REST API: Use consistent error messages when managing network plugins.

Props ramiy.
Fixes #50729.

git-svn-id: https://develop.svn.wordpress.org/trunk@48556 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-07-21 21:59:46 +00:00
parent df8399dce5
commit 3da487037d

View File

@ -640,7 +640,7 @@ class WP_REST_Plugins_Controller extends WP_REST_Controller {
if ( is_multisite() && ( 'network-active' === $current_status || 'network-active' === $new_status ) && ! current_user_can( 'manage_network_plugins' ) ) {
return new WP_Error(
'rest_cannot_manage_network_plugins',
__( 'Sorry, you do not have permission to manage network plugins.' ),
__( 'Sorry, you are not allowed to manage network plugins.' ),
array( 'status' => rest_authorization_required_code() )
);
}