Make WordPress Core

Changeset 16126


Ignore:
Timestamp:
11/01/2010 08:43:24 AM (14 years ago)
Author:
westi
Message:

Correct the subdomain/non-subdomain logic when listing sites.
Tidy up the case statement.
See #15174.

File:
1 edited

Legend:

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

    r15985 r16126  
    159159            echo "<tr class='$class'>";
    160160
    161             $blogname = ( is_subdomain_install() ) ? str_replace( '.'.$current_site->domain, '', $blog['domain'] ) : $blog['path'];
    162 
     161            $blogname = ( is_subdomain_install() ) ? $blog['path'] : str_replace( '.'.$current_site->domain, '', $blog['domain'] );
     162           
    163163            list( $columns, $hidden ) = $this->get_column_info();
    164164
     
    245245                        ?>
    246246                        </td>
    247                 <?php
    248                 break;
    249                     case 'users': ?>
     247                    <?php
     248                    break;
     249                case 'users': ?>
    250250                        <td valign="top">
    251251                            <?php
     
    271271                    break;
    272272
    273                     case 'plugins': ?>
     273                case 'plugins': ?>
    274274                        <?php if ( has_filter( 'wpmublogsaction' ) ) { ?>
    275275                        <td valign="top">
     
    279279                    <?php break;
    280280
    281                     default: ?>
     281                default: ?>
    282282                        <?php if ( has_filter( 'manage_blogs_custom_column' ) ) { ?>
    283283                        <td valign="top">
Note: See TracChangeset for help on using the changeset viewer.