Make WordPress Core

Ticket #35676: 35676.2.patch

File 35676.2.patch, 823 bytes (added by ramiy, 9 years ago)

easier to read code

  • wp-admin/includes/class-wp-ms-sites-list-table.php

     
    310310                <?php
    311311                if ( 'list' !== $mode ) {
    312312                        switch_to_blog( $blog['blog_id'] );
    313                         /* 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>';
     313                        echo '<p>';
     314                        printf(
     315                                /* translators: 1: site name, 2: site tagline. */
     316                                __( '%1$s &#8211; %2$s' ),
     317                                get_option( 'blogname' ),
     318                                '<em>' . get_option( 'blogdescription ' ) . '</em>'
     319                        );
     320                        echo '</p>';
    315321                        restore_current_blog();
    316322                }
    317323        }