Ticket #12460: 12460.2.diff
| File 12460.2.diff, 3.4 KB (added by ocean90, 3 years ago) |
|---|
-
wp-admin/ms-sites.php
178 178 ?> 179 179 <tr class="form-field"> 180 180 <th scope="row"><?php echo ucwords( str_replace( "_", " ", $option->option_name ) ) ?></th> 181 <td><textarea rows="5" cols="40" name="option[<?php echo esc_attr($option->option_name) ?>]" type="text"id="<?php echo esc_attr($option->option_name) ?>"<?php echo $disabled ?>><?php echo esc_html( $option->option_value ) ?></textarea></td>181 <td><textarea rows="5" cols="40" name="option[<?php echo esc_attr($option->option_name) ?>]" id="<?php echo esc_attr($option->option_name) ?>"<?php echo $disabled ?>><?php echo esc_html( $option->option_value ) ?></textarea></td> 182 182 </tr> 183 183 <?php 184 184 } else { … … 614 614 <th style="text-align:center;" scope='row'><?php _e('Site Address') ?></th> 615 615 <td> 616 616 <?php if ( is_subdomain_install() ) { ?> 617 <input name="blog[domain]" type="text" title="<?php _e('Domain') ?>"/>.<?php echo $current_site->domain;?>617 <input name="blog[domain]" type="text" class="regular-text" title="<?php _e('Domain') ?>"/>.<?php echo $current_site->domain;?> 618 618 <?php } else { 619 echo $current_site->domain . $current_site->path ?><input name="blog[domain]" type="text" title="<?php _e('Domain') ?>"/>619 echo $current_site->domain . $current_site->path ?><input name="blog[domain]" type="text" class="regular-text" title="<?php _e('Domain') ?>"/> 620 620 <?php } 621 621 echo "<p>" . __( 'Only the characters a-z and 0-9 recommended.' ) . "</p>"; 622 622 ?> … … 624 624 </tr> 625 625 <tr class="form-field form-required"> 626 626 <th style="text-align:center;" scope='row'><?php _e('Site Title') ?></th> 627 <td><input name="blog[title]" type="text" size="20" title="<?php _e('Title') ?>"/></td>627 <td><input name="blog[title]" type="text" class="regular-text" title="<?php _e('Title') ?>"/></td> 628 628 </tr> 629 629 <tr class="form-field form-required"> 630 630 <th style="text-align:center;" scope='row'><?php _e('Admin Email') ?></th> 631 <td><input name="blog[email]" type="text" size="20" title="<?php _e('Email') ?>"/></td>631 <td><input name="blog[email]" type="text" class="regular-text" title="<?php _e('Email') ?>"/></td> 632 632 </tr> 633 633 <tr class="form-field"> 634 634 <td colspan='2'><?php _e('A new user will be created if the above email address is not in the database.') ?><br /><?php _e('The username and password will be mailed to this email address.') ?></td> -
wp-admin/ms-users.php
296 296 <table class="form-table"> 297 297 <tr class="form-field form-required"> 298 298 <th scope='row'><?php _e('Username') ?></th> 299 <td><input type="text" name="user[username]" /></td>299 <td><input type="text" class="regular-text" name="user[username]" /></td> 300 300 </tr> 301 301 <tr class="form-field form-required"> 302 302 <th scope='row'><?php _e('Email') ?></th> 303 <td><input type="text" name="user[email]" /></td>303 <td><input type="text" class="regular-text" name="user[email]" /></td> 304 304 </tr> 305 305 <tr class="form-field"> 306 306 <td colspan='2'><?php _e('Username and password will be mailed to the above email address.') ?></td>
