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-includes/class-wp-customize-widgets.php

    r48110 r48111  
    825825                    <?php
    826826                        /* translators: &#9656; is the unicode right-pointing triangle. %s: Section title in the Customizer. */
    827                         echo sprintf( __( 'Customizing &#9656; %s' ), esc_html( $this->manager->get_panel( 'widgets' )->title ) );
     827                        printf( __( 'Customizing &#9656; %s' ), esc_html( $this->manager->get_panel( 'widgets' )->title ) );
    828828                    ?>
    829829                    </span>
Note: See TracChangeset for help on using the changeset viewer.