Make WordPress Core


Ignore:
Timestamp:
06/20/2020 01:16:45 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Replace echo sprintf() with printf().

See #49542.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/customize.php

    r47816 r48111  
    220220                        <?php
    221221                            /* translators: %s: The site/panel title in the Customizer. */
    222                             echo sprintf( __( 'You are customizing %s' ), '<strong class="panel-title site-title">' . get_bloginfo( 'name', 'display' ) . '</strong>' );
     222                            printf( __( 'You are customizing %s' ), '<strong class="panel-title site-title">' . get_bloginfo( 'name', 'display' ) . '</strong>' );
    223223                        ?>
    224224                        </span>
Note: See TracChangeset for help on using the changeset viewer.