diff --git src/wp-admin/network/site-new.php src/wp-admin/network/site-new.php
index 00ca3c9..6dee4f0 100644
|
|
if ( ! empty( $messages ) ) { |
143 | 143 | <th scope="row"><label for="site-address"><?php _e( 'Site Address' ) ?></label></th> |
144 | 144 | <td> |
145 | 145 | <?php if ( is_subdomain_install() ) { ?> |
146 | | <input name="blog[domain]" type="text" class="regular-text" id="site-address" aria-describedby="site-address-desc" /><span class="no-break">.<?php echo preg_replace( '|^www\.|', '', $current_site->domain ); ?></span> |
| 146 | <input name="blog[domain]" type="text" class="regular-text" id="site-address" aria-describedby="site-address-desc" autocapitalize="none" autocorrect="off"/><span class="no-break">.<?php echo preg_replace( '|^www\.|', '', $current_site->domain ); ?></span> |
147 | 147 | <?php } else { |
148 | 148 | echo $current_site->domain . $current_site->path ?><input name="blog[domain]" type="text" class="regular-text" id="site-address" aria-describedby="site-address-desc" /> |
149 | 149 | <?php } |