Redirect from network.php to network/setup.php. see #15461.
git-svn-id: http://svn.automattic.com/wordpress/trunk@16454 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d6002995a7
commit
8efb005a73
|
@ -18,8 +18,14 @@ require_once( './admin.php' );
|
||||||
if ( ! is_super_admin() )
|
if ( ! is_super_admin() )
|
||||||
wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
|
wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
|
||||||
|
|
||||||
if ( is_multisite() && ! defined( 'MULTISITE' ) )
|
if ( is_multisite() ) {
|
||||||
wp_die( __( 'The Network creation panel is not for WordPress MU networks.' ) );
|
if ( ! is_network_admin() ) {
|
||||||
|
wp_redirect( network_admin_url( 'setup.php' ) );
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
if ( ! defined( 'MULTISITE' ) )
|
||||||
|
wp_die( __( 'The Network creation panel is not for WordPress MU networks.' ) );
|
||||||
|
}
|
||||||
|
|
||||||
// We need to create references to ms global tables to enable Network.
|
// We need to create references to ms global tables to enable Network.
|
||||||
foreach ( $wpdb->tables( 'ms_global' ) as $table => $prefixed_table )
|
foreach ( $wpdb->tables( 'ms_global' ) as $table => $prefixed_table )
|
||||||
|
|
Loading…
Reference in New Issue