diff --git a/wp-admin/network.php b/wp-admin/network.php index e3bb676db..5c2b8ce90 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -96,7 +96,6 @@ include( './admin-header.php' );

-

' . __('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 '

' . __('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(); @@ -126,7 +125,7 @@ function network_step1( $errors = false ) { $hostname = get_clean_basedomain(); $has_ports = strstr( $hostname, ':' ); if ( ( false !== $has_ports && ! in_array( $has_ports, array( ':80', ':443' ) ) ) ) { - echo '

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

'; + 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 ''; @@ -134,6 +133,8 @@ function network_step1( $errors = false ) { die(); } + echo ''; + wp_nonce_field( 'install-network-1' ); $error_codes = array(); @@ -244,6 +245,7 @@ function network_step1( $errors = false ) {

' />

+
-