Coding Standards: Use strict comparison in wp-includes/feed-atom-comments.php.

Follow-up to [9818].

Props aristath, poena, afercia, SergeyBiryukov.
See #58831.
Built from https://develop.svn.wordpress.org/trunk@56324


git-svn-id: http://core.svn.wordpress.org/trunk@55836 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2023-07-29 00:31:35 +00:00
parent ee1baf955c
commit 18ca91327a
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ while ( have_comments() ) :
<?php
// Return comment threading information (https://www.ietf.org/rfc/rfc4685.txt).
if ( 0 == $comment->comment_parent ) : // This comment is top-level.
if ( '0' === $comment->comment_parent ) : // This comment is top-level.
?>
<thr:in-reply-to ref="<?php the_guid(); ?>" href="<?php the_permalink_rss(); ?>" type="<?php bloginfo_rss( 'html_type' ); ?>" />
<?php

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.4-alpha-56323';
$wp_version = '6.4-alpha-56324';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.