diff --git a/wp-admin/network/site-info.php b/wp-admin/network/site-info.php
index d5d5ce4..ada24f0 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 $parsed_scheme . '://' . esc_attr( $details->domain ) . esc_attr( $details->path ); ?></td> |
166 | 166 | </tr> |
167 | 167 | <?php |
168 | 168 | // For any other site, the scheme, domain, and path can all be changed. |