diff --git a/wp-admin/network.php b/wp-admin/network.php index eae9afab0..f8255680b 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -110,6 +110,7 @@ function network_step1( $errors = false ) { if ( get_option( 'siteurl' ) != get_option( 'home' ) ) { echo '

' . __('Error:') . ' ' . sprintf( __( 'Your WordPress address must match your Site address before creating a Network. See General Settings.' ), esc_url( admin_url( 'options-general.php' ) ) ) . '

'; + echo ''; include ('./admin-footer.php' ); die(); } @@ -117,6 +118,7 @@ function network_step1( $errors = false ) { $active_plugins = get_option( 'active_plugins' ); if ( ! empty( $active_plugins ) ) { echo '

' . __('Warning:') . ' ' . sprintf( __( 'Please deactivate your plugins before enabling the Network feature.' ), admin_url( 'plugins.php?plugin_status=active' ) ) . '

' . __(' Once the network is created, you may reactivate your plugins.' ) . '

'; + echo ''; include( './admin-footer.php' ); die(); } @@ -127,6 +129,7 @@ function network_step1( $errors = false ) { echo '

' . __( 'Error:') . ' ' . __( 'You cannot install a network of sites with your server address.' ) . '

'; echo '

' . sprintf( __( 'You cannot use port numbers such as %s.' ), $has_ports ) . '

'; echo '' . __( 'Return to Dashboard' ) . ''; + echo ''; include( './admin-footer.php' ); die(); }