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

    r25616 r38657  
    1414require_once( dirname( __FILE__ ) . '/admin.php' );
    1515
    16 if ( ! is_multisite() )
    17     wp_die( __( 'Multisite support is not enabled.' ) );
    18 
    1916require( ABSPATH . 'wp-admin/update.php' );
Note: See TracChangeset for help on using the changeset viewer.