From 4f774af5e8639861509f431cb5f06034489c01d0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 25 Feb 2025 17:51:24 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp_transition_comment_status()`. Follow-up to [9195]. Props aristath, poena, afercia, SergeyBiryukov. See #62279. Built from https://develop.svn.wordpress.org/trunk@59867 git-svn-id: http://core.svn.wordpress.org/trunk@59209 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 6d20022979..b53120ea1a 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -1815,7 +1815,7 @@ function wp_transition_comment_status( $new_status, $old_status, $comment ) { } // Call the hooks. - if ( $new_status != $old_status ) { + if ( $new_status !== $old_status ) { /** * Fires when the comment status is in transition. * @@ -1826,6 +1826,7 @@ function wp_transition_comment_status( $new_status, $old_status, $comment ) { * @param WP_Comment $comment Comment object. */ do_action( 'transition_comment_status', $new_status, $old_status, $comment ); + /** * Fires when the comment status is in transition from one specific status to another. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 78bb666236..5408d866a4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59866'; +$wp_version = '6.8-alpha-59867'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.