mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Coding Standards: Use strict comparison in wp-includes/theme-compat/comments.php.
Follow-up to [31941], [41285], [55420]. Props sarequl. See #57839. git-svn-id: https://develop.svn.wordpress.org/trunk@55849 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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' ),
|
||||
|
||||
Reference in New Issue
Block a user