Changeset 41704 for trunk/src/wp-includes/comment.php
- Timestamp:
- 10/03/2017 01:08:48 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r41689 r41704 791 791 * 792 792 * @param bool $is_flood Is a comment flooding occurring? 793 * @param string $ip Comment IP.794 * @param string $email Comment author email address.793 * @param string $ip Comment author's IP address. 794 * @param string $email Comment author's email address. 795 795 * @param string $date MySQL time string. 796 796 * @param bool $avoid_die When true, a disallowed comment will result in the function … … 1157 1157 * @param string $url The url used in the comment 1158 1158 * @param string $comment The comment content 1159 * @param string $user_ip The comment author IP address1159 * @param string $user_ip The comment author's IP address 1160 1160 * @param string $user_agent The author's browser user agent 1161 1161 * @return bool True if comment contains blacklisted content, false if comment does not … … 1835 1835 $commentdata['comment_content'] = apply_filters( 'pre_comment_content', $commentdata['comment_content'] ); 1836 1836 /** 1837 * Filters the comment author's IP before it is set.1837 * Filters the comment author's IP address before it is set. 1838 1838 * 1839 1839 * @since 1.5.0 1840 1840 * 1841 * @param string $comment_author_ip The comment author's IP .1841 * @param string $comment_author_ip The comment author's IP address. 1842 1842 */ 1843 1843 $commentdata['comment_author_IP'] = apply_filters( 'pre_comment_user_ip', $commentdata['comment_author_IP'] );
Note: See TracChangeset
for help on using the changeset viewer.