Display the site scheme, not the current scheme on Edit Site screen in network admin.
props johnbillion. fixes #28406. Built from https://develop.svn.wordpress.org/trunk@28643 git-svn-id: http://core.svn.wordpress.org/trunk@28461 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
df597224e5
commit
66bfea485a
|
@ -42,6 +42,7 @@ $details = get_blog_details( $id );
|
|||
if ( !can_edit_network( $details->site_id ) )
|
||||
wp_die( __( 'You do not have permission to access this page.' ) );
|
||||
|
||||
$parsed = parse_url( $details->siteurl );
|
||||
$is_main_site = is_main_site( $id );
|
||||
|
||||
if ( isset($_REQUEST['action']) && 'update-site' == $_REQUEST['action'] ) {
|
||||
|
@ -122,12 +123,10 @@ if ( ! empty( $messages ) ) {
|
|||
<table class="form-table">
|
||||
<tr class="form-field form-required">
|
||||
<th scope="row"><?php _e( 'Domain' ) ?></th>
|
||||
<?php
|
||||
$protocol = is_ssl() ? 'https://' : 'http://';
|
||||
if ( $is_main_site ) { ?>
|
||||
<td><code><?php echo $protocol; echo esc_attr( $details->domain ) ?></code></td>
|
||||
<?php if ( $is_main_site ) { ?>
|
||||
<td><code><?php echo $parsed['scheme'] . '://' . esc_attr( $details->domain ) ?></code></td>
|
||||
<?php } else { ?>
|
||||
<td><?php echo $protocol; ?><input name="blog[domain]" type="text" id="domain" value="<?php echo esc_attr( $details->domain ) ?>" size="33" /></td>
|
||||
<td><?php echo $parsed['scheme'] . '://'; ?><input name="blog[domain]" type="text" id="domain" value="<?php echo esc_attr( $details->domain ) ?>" size="33" /></td>
|
||||
<?php } ?>
|
||||
</tr>
|
||||
<tr class="form-field form-required">
|
||||
|
|
Loading…
Reference in New Issue