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:
Sergey Biryukov 2023-05-23 15:25:24 +00:00
parent 6c9c6cd6ef
commit 03436e6d3a
2 changed files with 2 additions and 2 deletions

View File

@ -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' ),

View File

@ -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.