From d685ee9b02c90602cd0b52b4130ba00dc552a69a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 24 Feb 2025 07:07:16 +0000 Subject: [PATCH] Docs: Correct DocBlock formatting for `wp_check_comment_disallowed_list()`. Follow-up to [6553], [48121], [48575]. See #62281. Built from https://develop.svn.wordpress.org/trunk@59864 git-svn-id: http://core.svn.wordpress.org/trunk@59206 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment.php | 14 +++++++------- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 830272cf34..6d20022979 100644 --- a/wp-includes/comment.php +++ b/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 ) { /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 2194001887..0a7862d3bc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59863'; +$wp_version = '6.8-alpha-59864'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.