Make WordPress Core

Ticket #35632: 35632.2.diff

File 35632.2.diff, 1014 bytes (added by rachelbaker, 9 years ago)
  • src/wp-admin/network/site-info.php

     
    172172                // The main site of the network should not be updated on this page.
    173173                if ( $is_main_site ) : ?>
    174174                <tr class="form-field">
    175                         <th scope="row"><?php _e( 'Site URL' ); ?></th>
     175                        <th scope="row"><?php _e( 'Site Address (URL)' ); ?></th>
    176176                        <td><?php echo esc_url( $details->siteurl ); ?></td>
    177177                </tr>
    178178                <?php
     
    179179                // For any other site, the scheme, domain, and path can all be changed.
    180180                else : ?>
    181181                <tr class="form-field form-required">
    182                         <th scope="row"><?php _e( 'Site URL' ); ?></th>
     182                        <th scope="row"><?php _e( 'Site Address (URL)' ); ?></th>
    183183                        <td><input name="blog[url]" type="text" id="url" value="<?php echo $parsed_scheme . '://' . esc_attr( $details->domain ) . esc_attr( $details->path ); ?>" /></td>
    184184                </tr>
    185185                <?php endif; ?>