- Timestamp:
- 06/10/2015 07:27:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r32718 r32719 263 263 echo "<tr{$class}>"; 264 264 265 $blogname = $blog['domain'] . $blog['path'];265 $blogname = untrailingslashit( $blog['domain'] . $blog['path'] ); 266 266 267 267 list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info(); … … 403 403 404 404 if ( $primary === $column_name ) { 405 $blogname = ( is_subdomain_install() ) ? str_replace( '.'.$current_site->domain, '', $blog['domain'] ) : $blog['path'];405 $blogname = untrailingslashit( $blog['domain'] . $blog['path'] ); 406 406 407 407 // Preordered.
Note: See TracChangeset
for help on using the changeset viewer.