Changeset 45599 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 07/05/2019 01:44:41 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r45590 r45599 278 278 * @param WP_Comment $comment The comment object. 279 279 */ 280 return apply_filters( 'get_comment_author_IP', $comment->comment_author_IP, $comment->comment_ID, $comment ); 280 return apply_filters( 'get_comment_author_IP', $comment->comment_author_IP, $comment->comment_ID, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 281 281 } 282 282 … … 668 668 * @param WP_Comment $comment The comment object. 669 669 */ 670 return apply_filters( 'get_comment_ID', $comment->comment_ID, $comment ); 670 return apply_filters( 'get_comment_ID', $comment->comment_ID, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 671 671 } 672 672
Note: See TracChangeset
for help on using the changeset viewer.