Changeset 38748 for trunk/src/wp-includes/comment.php
- Timestamp:
- 10/07/2016 06:31:51 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r38740 r38748 55 55 * 56 56 * @since 3.0.0 57 * @since 4.7.0 Added the `$comment` parameter. 57 58 * 58 59 * @param int $num_links The number of links found. 59 60 * @param string $url Comment author's URL. Included in allowed links total. 61 * @param string $comment Content of the comment. 60 62 */ 61 $num_links = apply_filters( 'comment_max_links_url', $num_links, $url );63 $num_links = apply_filters( 'comment_max_links_url', $num_links, $url, $comment ); 62 64 63 65 /*
Note: See TracChangeset
for help on using the changeset viewer.