Ticket #35676: 35676.2.patch
File 35676.2.patch, 823 bytes (added by , 9 years ago) |
---|
-
wp-admin/includes/class-wp-ms-sites-list-table.php
310 310 <?php 311 311 if ( 'list' !== $mode ) { 312 312 switch_to_blog( $blog['blog_id'] ); 313 /* translators: 1: site name, 2: site tagline. */ 314 echo '<p>' . sprintf( __( '%1$s – <em>%2$s</em>' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '</p>'; 313 echo '<p>'; 314 printf( 315 /* translators: 1: site name, 2: site tagline. */ 316 __( '%1$s – %2$s' ), 317 get_option( 'blogname' ), 318 '<em>' . get_option( 'blogdescription ' ) . '</em>' 319 ); 320 echo '</p>'; 315 321 restore_current_blog(); 316 322 } 317 323 }