Revert part of [16126] and restore the correct behaviour in the ms sites list. Fixes #15297 props ronbme

git-svn-id: https://develop.svn.wordpress.org/trunk@16158 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2010-11-02 22:13:16 +00:00
parent d6e8a729a9
commit bb52f64946
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
}
echo "<tr class='$class'>";
$blogname = ( is_subdomain_install() ) ? $blog['path'] : str_replace( '.'.$current_site->domain, '', $blog['domain'] );
$blogname = ( is_subdomain_install() ) ? str_replace( '.'.$current_site->domain, '', $blog['domain'] ) : $blog['path'];
list( $columns, $hidden ) = $this->get_column_info();