Make WordPress Core

Ticket #49190: 49190.2.diff

File 49190.2.diff, 923 bytes (added by peterwilsoncc, 5 years ago)
  • src/wp-content/themes/twentytwenty/comments.php

    diff --git a/src/wp-content/themes/twentytwenty/comments.php b/src/wp-content/themes/twentytwenty/comments.php
    index 3a435296c8..42ae15ad86 100644
    a b if ( $comments ) { 
    3434                                _e( 'Leave a comment', 'twentytwenty' );
    3535                        } elseif ( '1' === $comments_number ) {
    3636                                /* translators: %s: post title */
    37                                 printf( _x( 'One reply on “%s”', 'comments title', 'twentytwenty' ), esc_html( get_the_title() ) );
     37                                printf( _x( 'One reply on “%s”', 'comments title', 'twentytwenty' ), get_the_title() );
    3838                        } else {
    3939                                echo sprintf(
    4040                                        /* translators: 1: number of comments, 2: post title */
    if ( $comments ) { 
    4646                                                'twentytwenty'
    4747                                        ),
    4848                                        number_format_i18n( $comments_number ),
    49                                         esc_html( get_the_title() )
     49                                        get_the_title()
    5050                                );
    5151                        }
    5252