From 4a00fd783b01a6f7a667b4a482ce51ed9c36a98d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 24 Feb 2025 07:05:19 +0000 Subject: [PATCH] Docs: Correct DocBlock formatting for `wp_check_comment_disallowed_list()`. Follow-up to [6553], [48121], [48575]. See #62281. git-svn-id: https://develop.svn.wordpress.org/trunk@59864 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/comment.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/wp-includes/comment.php b/src/wp-includes/comment.php index 830272cf34..6d20022979 100644 --- a/src/wp-includes/comment.php +++ b/src/wp-includes/comment.php @@ -1325,13 +1325,13 @@ function wp_check_comment_data( $comment_data ) { * * @since 5.5.0 * - * @param string $author The author of the comment - * @param string $email The email of the comment - * @param string $url The url used in the comment - * @param string $comment The comment content - * @param string $user_ip The comment author's IP address - * @param string $user_agent The author's browser user agent - * @return bool True if comment contains disallowed content, false if comment does not + * @param string $author The author of the comment. + * @param string $email The email of the comment. + * @param string $url The url used in the comment. + * @param string $comment The comment content. + * @param string $user_ip The comment author's IP address. + * @param string $user_agent The author's browser user agent. + * @return bool True if the comment contains disallowed content, false otherwise. */ function wp_check_comment_disallowed_list( $author, $email, $url, $comment, $user_ip, $user_agent ) { /**