Make WordPress Core

Changeset 40393


Ignore:
Timestamp:
04/07/2017 01:50:12 PM (8 years ago)
Author:
johnbillion
Message:

Networks and Sites: Align the display of site statuses on the Sites listing screen with those of posts on the Posts listing screen.

Fixes #40290

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php

    r40310 r40393  
    316316            $state_count = count( $blog_states );
    317317            $i = 0;
    318             $blog_state .= ' - ';
     318            $blog_state .= ' — ';
    319319            foreach ( $blog_states as $state ) {
    320320                ++$i;
     
    325325
    326326        ?>
    327         <a href="<?php echo esc_url( network_admin_url( 'site-info.php?id=' . $blog['blog_id'] ) ); ?>" class="edit"><?php echo $blogname . $blog_state; ?></a>
     327        <strong>
     328            <a href="<?php echo esc_url( network_admin_url( 'site-info.php?id=' . $blog['blog_id'] ) ); ?>" class="edit"><?php echo $blogname; ?></a>
     329            <?php echo $blog_state; ?>
     330        </strong>
    328331        <?php
    329332        if ( 'list' !== $mode ) {
Note: See TracChangeset for help on using the changeset viewer.