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
This commit is contained in:
Sergey Biryukov 2025-02-24 07:07:16 +00:00
parent 73276fe471
commit d685ee9b02
2 changed files with 8 additions and 8 deletions

View File

@ -1325,13 +1325,13 @@ function wp_check_comment_data( $comment_data ) {
* *
* @since 5.5.0 * @since 5.5.0
* *
* @param string $author The author of the comment * @param string $author The author of the comment.
* @param string $email The email of the comment * @param string $email The email of the comment.
* @param string $url The url used in the comment * @param string $url The url used in the comment.
* @param string $comment The comment content * @param string $comment The comment content.
* @param string $user_ip The comment author's IP address * @param string $user_ip The comment author's IP address.
* @param string $user_agent The author's browser user agent * @param string $user_agent The author's browser user agent.
* @return bool True if comment contains disallowed content, false if comment does not * @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 ) { function wp_check_comment_disallowed_list( $author, $email, $url, $comment, $user_ip, $user_agent ) {
/** /**

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.