Make WordPress Core

Ticket #30486: 30486.3.diff

File 30486.3.diff, 9.5 KB (added by jeremyfelt, 10 years ago)
  • src/wp-admin/includes/ms.php

     
    470470
    471471        ?>
    472472        <tr>
    473                 <th><?php _e( 'Site Upload Space Quota '); ?></th>
    474                 <td><input type="number" step="1" min="0" style="width: 100px" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /> <?php _e( 'MB (Leave blank for network default)' ); ?></td>
     473                <th><?php _e( 'Site Upload Space Quota '); ?></th>
     474                <td><input type="number" step="1" min="0" style="width: 100px" name="option[blog_upload_space]" value="<?php echo $quota; ?>" /> <?php _e( 'MB (Leave blank for network default)' ); ?></td>
    475475        </tr>
    476476        <?php
    477477}
  • src/wp-admin/network/site-info.php

     
    124124        <input type="hidden" name="id" value="<?php echo esc_attr( $id ) ?>" />
    125125        <table class="form-table">
    126126                <tr class="form-field form-required">
    127                         <th scope="row"><?php _e( 'Domain' ) ?></th>
     127                        <th scope="row"><></th>
    128128                        <?php if ( $is_main_site ) { ?>
    129129                                <td><code><?php echo $parsed['scheme'] . '://' . esc_attr( $details->domain ) ?></code></td>
    130130                        <?php } else { ?>
     
    132132                        <?php } ?>
    133133                </tr>
    134134                <tr class="form-field form-required">
    135                         <th scope="row"><?php _e( 'Path' ) ?></th>
     135                        <th scope="row"><></th>
    136136                        <?php if ( $is_main_site ) { ?>
    137137                        <td><code><?php echo esc_attr( $details->path ) ?></code></td>
    138138                        <?php
     
    141141                        ?>
    142142                        <td>
    143143                                <input name="blog[path]" type="text" id="path" value="<?php echo esc_attr( $details->path ) ?>" /><br />
    144                                 <label><input type="checkbox" name="update_home_url" value="update" <?php if ( get_option( 'siteurl' ) == untrailingslashit( get_blogaddress_by_id ($id ) ) || get_option( 'home' ) == untrailingslashit( get_blogaddress_by_id( $id ) ) ) echo 'checked="checked"'; ?> /> <?php _e( 'Update <code>siteurl</code> and <code>home</code> as well.' ); ?></label>
     144                                <<?php _e( 'Update <code>siteurl</code> and <code>home</code> as well.' ); ?></label>
    145145                        </td>
    146146                        <?php
    147147                                restore_current_blog();
    148148                        } ?>
    149149                </tr>
    150150                <tr class="form-field">
    151                         <th scope="row"><?php _ex( 'Registered', 'site' ) ?></th>
     151                        <th scope="row"><></th>
    152152                        <td><input name="blog[registered]" type="text" id="blog_registered" value="<?php echo esc_attr( $details->registered ) ?>" /></td>
    153153                </tr>
    154154                <tr class="form-field">
    155                         <th scope="row"><?php _e( 'Last Updated' ); ?></th>
     155                        <th scope="row"><></th>
    156156                        <td><input name="blog[last_updated]" type="text" id="blog_last_updated" value="<?php echo esc_attr( $details->last_updated ) ?>" /></td>
    157157                </tr>
    158158                <?php
  • src/wp-admin/network/site-new.php

     
    127127<?php wp_nonce_field( 'add-blog', '_wpnonce_add-blog' ) ?>
    128128        <table class="form-table">
    129129                <tr class="form-field form-required">
    130                         <th scope="row"><?php _e( 'Site Address' ) ?></th>
     130                        <th scope="row"><></th>
    131131                        <td>
    132132                        <?php if ( is_subdomain_install() ) { ?>
    133133                                <input name="blog[domain]" type="text" class="regular-text" id="site-address" title="<?php esc_attr_e( 'Domain' ) ?>"/><span class="no-break">.<?php echo preg_replace( '|^www\.|', '', $current_site->domain ); ?></span>
     
    139139                        </td>
    140140                </tr>
    141141                <tr class="form-field form-required">
    142                         <th scope="row"><?php _e( 'Site Title' ) ?></th>
     142                        <th scope="row"><></th>
    143143                        <td><input name="blog[title]" type="text" class="regular-text" id="site-title" title="<?php esc_attr_e( 'Title' ) ?>"/></td>
    144144                </tr>
    145145                <tr class="form-field form-required">
    146                         <th scope="row"><?php _e( 'Admin Email' ) ?></th>
     146                        <th scope="row"><></th>
    147147                        <td><input name="blog[email]" type="email" class="regular-text wp-suggest-user" id="admin-email" data-autocomplete-type="search" data-autocomplete-field="user_email" title="<?php esc_attr_e( 'Email' ) ?>"/></td>
    148148                </tr>
    149149                <tr class="form-field">
  • src/wp-admin/network/site-settings.php

     
    138138                        if ( strpos( $option->option_value, "\n" ) !== false ) {
    139139                        ?>
    140140                                <tr class="form-field">
    141                                         <th scope="row"><?php echo ucwords( str_replace( "_", " ", $option->option_name ) ) ?></th>
     141                                        <th scope="row"><></th>
    142142                                        <td><textarea class="<?php echo $class; ?>" rows="5" cols="40" name="option[<?php echo esc_attr( $option->option_name ) ?>]" id="<?php echo esc_attr( $option->option_name ) ?>"<?php disabled( $disabled ) ?>><?php echo esc_textarea( $option->option_value ) ?></textarea></td>
    143143                                </tr>
    144144                        <?php
    145145                        } else {
    146146                        ?>
    147147                                <tr class="form-field">
    148                                         <th scope="row"><?php echo esc_html( ucwords( str_replace( "_", " ", $option->option_name ) ) ); ?></th>
     148                                        <th scope="row"><></th>
    149149                                        <?php if ( $is_main_site && in_array( $option->option_name, array( 'siteurl', 'home' ) ) ) { ?>
    150150                                        <td><code><?php echo esc_html( $option->option_value ) ?></code></td>
    151151                                        <?php } else { ?>
  • src/wp-admin/network/site-users.php

     
    262262        <input type="hidden" name="id" value="<?php echo esc_attr( $id ) ?>" />
    263263        <table class="form-table">
    264264                <tr>
    265                         <th scope="row"><?php _e( 'Username' ); ?></th>
     265                        <th scope="row"><></th>
    266266                        <td><input type="text" class="regular-text wp-suggest-user" name="newuser" id="newuser" /></td>
    267267                </tr>
    268268                <tr>
    269                         <th scope="row"><?php _e( 'Role' ); ?></th>
    270                         <td><select name="new_role" id="new_role_0">
     269                        <th scope="row"><></th>
     270                        <td><select name="new_role" id="new_role_">
    271271                        <?php wp_dropdown_roles( get_option( 'default_role' ) ); ?>
    272272                        </select></td>
    273273                </tr>
     
    291291        <input type="hidden" name="id" value="<?php echo esc_attr( $id ) ?>" />
    292292        <table class="form-table">
    293293                <tr>
    294                         <th scope="row"><?php _e( 'Username' ) ?></th>
    295                         <td><input type="text" class="regular-text" name="user[username]" /></td>
     294                        <th scope="row"><></th>
     295                        <td><input type="text" class="regular-text" name="user[username]" /></td>
    296296                </tr>
    297297                <tr>
    298                         <th scope="row"><?php _e( 'Email' ) ?></th>
    299                         <td><input type="text" class="regular-text" name="user[email]" /></td>
     298                        <th scope="row"><></th>
     299                        <td><input type="text" class="regular-text" name="user[email]" /></td>
    300300                </tr>
    301301                <tr>
    302                         <th scope="row"><?php _e( 'Role' ); ?></th>
    303                         <td><select name="new_role" id="new_role_0">
     302                        <th scope="row"><></th>
     303                        <td><select name="new_role" id="new_role_">
    304304                        <?php wp_dropdown_roles( get_option( 'default_role' ) ); ?>
    305305                        </select></td>
    306306                </tr>
  • src/wp-admin/network/user-new.php

     
    8787        <form action="<?php echo network_admin_url('user-new.php?action=add-user'); ?>" id="adduser" method="post">
    8888        <table class="form-table">
    8989                <tr class="form-field form-required">
    90                         <th scope="row"><?php _e( 'Username' ) ?></th>
    91                         <td><input type="text" class="regular-text" name="user[username]" /></td>
     90                        <th scope="row"><></th>
     91                        <td><input type="text" class="regular-text" name="user[username]" /></td>
    9292                </tr>
    9393                <tr class="form-field form-required">
    94                         <th scope="row"><?php _e( 'Email' ) ?></th>
    95                         <td><input type="text" class="regular-text" name="user[email]" /></td>
     94                        <th scope="row"><></th>
     95                        <td><input type="text" class="regular-text" name="user[email]" /></td>
    9696                </tr>
    9797                <tr class="form-field">
    9898                        <td colspan="2"><?php _e( 'Username and password will be mailed to the above email address.' ) ?></td>