Changes between Initial Version and Version 1 of Ticket #55567, comment 74
- Timestamp:
- 05/10/2022 03:14:14 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #55567, comment 74
initial v1 1 1 @kebbet is referring to this line of code: 2 2 3 ```php3 {{{#!php 4 4 $post_title = '“' . get_the_title() . '”'; 5 ``` 5 }}} 6 6 7 7 https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/blocks/comments-title.php#L26 … … 9 9 and converting it into: 10 10 11 ```php11 {{{#!php 12 12 /* translators: %s: Post title. */ 13 13 $post_title = __( '“%s”', get_the_title() ); 14 ``` 14 }}} 15 15 16 16 This change will to be done in Gutenberg as the block specific files are managed and published from there. @gziolo is there time before RC2?