Make WordPress Core

Changeset 59864


Ignore:
Timestamp:
02/24/2025 07:05:19 AM (13 days ago)
Author:
SergeyBiryukov
Message:

Docs: Correct DocBlock formatting for wp_check_comment_disallowed_list().

Follow-up to [6553], [48121], [48575].

See #62281.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment.php

    r59863 r59864  
    13261326 * @since 5.5.0
    13271327 *
    1328  * @param string $author The author of the comment
    1329  * @param string $email The email of the comment
    1330  * @param string $url The url used in the comment
    1331  * @param string $comment The comment content
    1332  * @param string $user_ip The comment author's IP address
    1333  * @param string $user_agent The author's browser user agent
    1334  * @return bool True if comment contains disallowed content, false if comment does not
     1328 * @param string $author     The author of the comment.
     1329 * @param string $email      The email of the comment.
     1330 * @param string $url        The url used in the comment.
     1331 * @param string $comment    The comment content.
     1332 * @param string $user_ip    The comment author's IP address.
     1333 * @param string $user_agent The author's browser user agent.
     1334 * @return bool True if the comment contains disallowed content, false otherwise.
    13351335 */
    13361336function wp_check_comment_disallowed_list( $author, $email, $url, $comment, $user_ip, $user_agent ) {
Note: See TracChangeset for help on using the changeset viewer.