From 04b6524cb06582adff2f0d2aea2fe3f20be0b9f5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 3 Mar 2025 20:57:07 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp_insert_comment()`. Includes type casting `$comment_approved` to an integer to avoid breaking WP-CLI tests, since the value can be passed as a string. Follow-up to [3104], [3193], [3887], [59903]. Props swissspidy. See #62279. git-svn-id: https://develop.svn.wordpress.org/trunk@59915 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/comment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php index 47f8eb9665..7a824f5b07 100644 --- a/src/wp-includes/comment.php +++ b/src/wp-includes/comment.php @@ -2071,7 +2071,7 @@ function wp_insert_comment( $commentdata ) { $id = (int) $wpdb->insert_id; - if ( 1 == $comment_approved ) { + if ( 1 === (int) $comment_approved ) { wp_update_comment_count( $comment_post_id ); $data = array();