Coding Standards: Use strict comparison in `wp-includes/theme-compat/comments.php`.
Follow-up to [31941], [41285], [55420]. Props sarequl. See #57839. Built from https://develop.svn.wordpress.org/trunk@55849 git-svn-id: http://core.svn.wordpress.org/trunk@55361 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
6c9c6cd6ef
commit
03436e6d3a
|
@ -32,7 +32,7 @@ if ( post_password_required() ) { ?>
|
|||
<?php if ( have_comments() ) : ?>
|
||||
<h3 id="comments">
|
||||
<?php
|
||||
if ( 1 == get_comments_number() ) {
|
||||
if ( '1' === get_comments_number() ) {
|
||||
printf(
|
||||
/* translators: %s: Post title. */
|
||||
__( 'One response to %s' ),
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55848';
|
||||
$wp_version = '6.3-alpha-55849';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue