Make WordPress Core

Ticket #35676: 35676.patch

File 35676.patch, 729 bytes (added by ramiy, 9 years ago)
  • wp-admin/includes/class-wp-ms-sites-list-table.php

     
    311311                if ( 'list' !== $mode ) {
    312312                        switch_to_blog( $blog['blog_id'] );
    313313                        /* translators: 1: site name, 2: site tagline. */
    314                         echo '<p>' . sprintf( __( '%1$s &#8211; <em>%2$s</em>' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '</p>';
     314                        echo '<p>' . sprintf( __( '%1$s &#8211; %2$s' ), get_option( 'blogname' ), '<em>' . get_option( 'blogdescription ' ) . '</em>' ) . '</p>';
    315315                        restore_current_blog();
    316316                }
    317317        }