mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-22 15:31:42 +01:00
Multisite: Display correct scheme for the main site in site-info.php
.
Props greatislander. Fixes #39365. Built from https://develop.svn.wordpress.org/trunk@39930 git-svn-id: http://core.svn.wordpress.org/trunk@39867 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8062df694f
commit
c8de21c0c5
@ -162,7 +162,7 @@ if ( ! empty( $messages ) ) {
|
||||
if ( $is_main_site ) : ?>
|
||||
<tr class="form-field">
|
||||
<th scope="row"><?php _e( 'Site Address (URL)' ); ?></th>
|
||||
<td><?php echo esc_url( $details->domain . $details->path ); ?></td>
|
||||
<td><?php echo esc_url( $parsed_scheme . '://' . $details->domain . $details->path ); ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
// For any other site, the scheme, domain, and path can all be changed.
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-39929';
|
||||
$wp_version = '4.8-alpha-39930';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user