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/index.php

    r37914 r38657  
    1313/** Load WordPress dashboard API */
    1414require_once( ABSPATH . 'wp-admin/includes/dashboard.php' );
    15 
    16 if ( !is_multisite() )
    17     wp_die( __( 'Multisite support is not enabled.' ) );
    1815
    1916if ( ! current_user_can( 'manage_network' ) )
Note: See TracChangeset for help on using the changeset viewer.