Multisite: Replace `is_super_admin()` with `manage_network_users` when trying to import new users.

Props bhargavbhandari90.
Fixes #39212. See #37616.


git-svn-id: https://develop.svn.wordpress.org/trunk@39945 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Felix Arntz 2017-01-24 11:39:01 +00:00
parent 8bf00cceaf
commit 34c9399db8
1 changed files with 3 additions and 1 deletions

View File

@ -704,8 +704,10 @@ function _access_denied_splash() {
* @return bool True if the user has proper permissions, false if they do not. * @return bool True if the user has proper permissions, false if they do not.
*/ */
function check_import_new_users( $permission ) { function check_import_new_users( $permission ) {
if ( !is_super_admin() ) if ( ! current_user_can( 'manage_network_users' ) ) {
return false; return false;
}
return true; return true;
} }
// See "import_allow_fetch_attachments" and "import_attachment_size_limit" filters too. // See "import_allow_fetch_attachments" and "import_attachment_size_limit" filters too.