diff --git a/wp-admin/network/site-info.php b/wp-admin/network/site-info.php
index d5d5ce4..17df6ae 100644
|
a
|
b
|
|
| 162 | 162 | if ( $is_main_site ) : ?> |
| 163 | 163 | <tr class="form-field"> |
| 164 | 164 | <th scope="row"><?php _e( 'Site Address (URL)' ); ?></th> |
| 165 | | <td><?php echo esc_url( $details->domain . $details->path ); ?></td> |
| | 165 | <td><?php echo esc_url( $parsed_scheme . '://' . $details->domain . $details->path ); ?></td> |
| 166 | 166 | </tr> |
| 167 | 167 | <?php |
| 168 | 168 | // For any other site, the scheme, domain, and path can all be changed. |