Make WordPress Core


Ignore:
Timestamp:
09/27/2016 03:38:47 PM (8 years ago)
Author:
jeremyfelt
Message:

Multisite: Remove redundant is_multisite() checks in network admin templates.

wp-admin/network/admin.php is required by all of the individual network templates and begins with an is_multisite() check of its own. Because of this, we can remove the 26 other checks in the individual templates.

Props flixos90.
Fixes #37447.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/users.php

    r38647 r38657  
    1010/** Load WordPress Administration Bootstrap */
    1111require_once( dirname( __FILE__ ) . '/admin.php' );
    12 
    13 if ( ! is_multisite() )
    14     wp_die( __( 'Multisite support is not enabled.' ) );
    1512
    1613if ( ! current_user_can( 'manage_network_users' ) )
Note: See TracChangeset for help on using the changeset viewer.