Comments: Pass `$comment` to the `comment_max_links_url` filter.

Props rachelbaker.
Fixes #37955.

git-svn-id: https://develop.svn.wordpress.org/trunk@38748 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2016-10-07 18:31:51 +00:00
parent b2f60b5419
commit c138f3616a
1 changed files with 3 additions and 1 deletions

View File

@ -54,11 +54,13 @@ function check_comment($author, $email, $url, $comment, $user_ip, $user_agent, $
* Filters the number of links found in a comment. * Filters the number of links found in a comment.
* *
* @since 3.0.0 * @since 3.0.0
* @since 4.7.0 Added the `$comment` parameter.
* *
* @param int $num_links The number of links found. * @param int $num_links The number of links found.
* @param string $url Comment author's URL. Included in allowed links total. * @param string $url Comment author's URL. Included in allowed links total.
* @param string $comment Content of the comment.
*/ */
$num_links = apply_filters( 'comment_max_links_url', $num_links, $url ); $num_links = apply_filters( 'comment_max_links_url', $num_links, $url, $comment );
/* /*
* If the number of links in the comment exceeds the allowed amount, * If the number of links in the comment exceeds the allowed amount,