Changeset 19028 for trunk/wp-admin/network/site-new.php
- Timestamp:
- 10/20/2011 03:04:46 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/network/site-new.php
r18750 r19028 118 118 <td> 119 119 <?php if ( is_subdomain_install() ) { ?> 120 <input name="blog[domain]" type="text" class="regular-text" title="<?php _e( 'Domain' ) ?>"/>.<?php echo preg_replace( '|^www\.|', '', $current_site->domain );?>120 <input name="blog[domain]" type="text" class="regular-text" title="<?php esc_attr_e( 'Domain' ) ?>"/>.<?php echo preg_replace( '|^www\.|', '', $current_site->domain );?> 121 121 <?php } else { 122 echo $current_site->domain . $current_site->path ?><input name="blog[domain]" class="regular-text" type="text" title="<?php _e( 'Domain' ) ?>"/>122 echo $current_site->domain . $current_site->path ?><input name="blog[domain]" class="regular-text" type="text" title="<?php esc_attr_e( 'Domain' ) ?>"/> 123 123 <?php } 124 124 echo '<p>' . __( 'Only the characters a-z and 0-9 recommended.' ) . '</p>'; … … 128 128 <tr class="form-field form-required"> 129 129 <th scope="row"><?php _e( 'Site Title' ) ?></th> 130 <td><input name="blog[title]" type="text" class="regular-text" title="<?php _e( 'Title' ) ?>"/></td>130 <td><input name="blog[title]" type="text" class="regular-text" title="<?php esc_attr_e( 'Title' ) ?>"/></td> 131 131 </tr> 132 132 <tr class="form-field form-required"> 133 133 <th scope="row"><?php _e( 'Admin Email' ) ?></th> 134 <td><input name="blog[email]" type="text" class="regular-text" title="<?php _e( 'Email' ) ?>"/></td>134 <td><input name="blog[email]" type="text" class="regular-text" title="<?php esc_attr_e( 'Email' ) ?>"/></td> 135 135 </tr> 136 136 <tr class="form-field">
Note: See TracChangeset
for help on using the changeset viewer.