mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
3b30ea65f5
git-svn-id: http://svn.automattic.com/wordpress/trunk@17510 1a063a9b-81f0-0310-95a4-ce76da25c4cd
23 lines
513 B
PHP
23 lines
513 B
PHP
<?php
|
|
/**
|
|
* WordPress Network Administration Bootstrap
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
* @since 3.1.0
|
|
*/
|
|
|
|
define( 'WP_NETWORK_ADMIN', TRUE );
|
|
|
|
/** Load WordPress Administration Bootstrap */
|
|
require_once( dirname( dirname( __FILE__ ) ) . '/admin.php' );
|
|
|
|
if ( ! is_multisite() )
|
|
wp_die( __( 'Multisite support is not enabled.' ) );
|
|
|
|
if ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ) {
|
|
wp_redirect( network_admin_url() );
|
|
exit;
|
|
}
|
|
?>
|