diff --git a/wp-admin/network.php b/wp-admin/network.php index cb49043ccc..7a842b4b10 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -54,6 +54,9 @@ function get_clean_basedomain() { if ( ! network_domain_check() && ( ! defined( 'WP_ALLOW_MULTISITE' ) || ! WP_ALLOW_MULTISITE ) ) wp_die( __( 'You must define the WP_ALLOW_MULTISITE constant as true in your wp-config.php file to allow creation of a Network.' ) ); +if ( get_option( 'siteurl' ) != get_option( 'home' ) ) + wp_die( __( 'Your WordPress address must match your Site address before creating a Network.' ) ); + $title = __( 'Create a Network of WordPress Sites' ); $parent_file = 'tools.php';