Ticket #4222: #4222.diff
File #4222.diff, 848 bytes (added by , 6 years ago) |
---|
-
comments.php
32 32 printf( 33 33 /* translators: 1: title. */ 34 34 esc_html_e( 'One thought on “%1$s”', 'gutenbergtheme' ), 35 '<span>' . get_the_title() . '</span>'35 '<span>' . esc_html( get_the_title() ) . '</span>' 36 36 ); 37 37 } else { 38 38 printf( // WPCS: XSS OK. -
gutenfront-content.php
1 1 <?php 2 2 3 $localised_domain = parse_url( home_url( '/' ), PHP_URL_HOST );3 $localised_domain = wp_parse_url( home_url( '/' ), PHP_URL_HOST ); 4 4 5 5 $title = __( 'Say Hello to the New Editor', 'wporg' ); 6 6