Changeset 33954 for trunk/src/wp-includes/comment-functions.php
- Timestamp:
- 09/08/2015 10:16:57 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-functions.php
r33948 r33954 1021 1021 clean_comment_cache($comment_id); 1022 1022 1023 /** This action is documented in wp-includes/comment .php */1023 /** This action is documented in wp-includes/comment-functions.php */ 1024 1024 do_action( 'wp_set_comment_status', $comment_id, 'delete' ); 1025 1025 … … 1453 1453 $commentdata['user_id'] = apply_filters( 'pre_user_id', $commentdata['user_ID'] ); 1454 1454 } elseif ( isset( $commentdata['user_id'] ) ) { 1455 /** This filter is documented in wp-includes/comment .php */1455 /** This filter is documented in wp-includes/comment-functions.php */ 1456 1456 $commentdata['user_id'] = apply_filters( 'pre_user_id', $commentdata['user_id'] ); 1457 1457 } … … 1465 1465 */ 1466 1466 $commentdata['comment_agent'] = apply_filters( 'pre_comment_user_agent', ( isset( $commentdata['comment_agent'] ) ? $commentdata['comment_agent'] : '' ) ); 1467 /** This filter is documented in wp-includes/comment .php */1467 /** This filter is documented in wp-includes/comment-functions.php */ 1468 1468 $commentdata['comment_author'] = apply_filters( 'pre_comment_author_name', $commentdata['comment_author'] ); 1469 1469 /** … … 1483 1483 */ 1484 1484 $commentdata['comment_author_IP'] = apply_filters( 'pre_comment_user_ip', $commentdata['comment_author_IP'] ); 1485 /** This filter is documented in wp-includes/comment .php */1485 /** This filter is documented in wp-includes/comment-functions.php */ 1486 1486 $commentdata['comment_author_url'] = apply_filters( 'pre_comment_author_url', $commentdata['comment_author_url'] ); 1487 /** This filter is documented in wp-includes/comment .php */1487 /** This filter is documented in wp-includes/comment-functions.php */ 1488 1488 $commentdata['comment_author_email'] = apply_filters( 'pre_comment_author_email', $commentdata['comment_author_email'] ); 1489 1489 $commentdata['filtered'] = true; … … 1900 1900 */ 1901 1901 do_action( 'wp_update_comment_count', $post_id, $new, $old ); 1902 /** This action is documented in wp-includes/post .php */1902 /** This action is documented in wp-includes/post-functions.php */ 1903 1903 do_action( 'edit_post', $post_id, $post ); 1904 1904 … … 2382 2382 $post = get_post($post_id); 2383 2383 2384 /** This filter is documented in wp-includes/comment .php */2384 /** This filter is documented in wp-includes/comment-functions.php */ 2385 2385 $post_types = apply_filters( 'close_comments_for_post_types', array( 'post' ) ); 2386 2386 if ( ! in_array( $post->post_type, $post_types ) )
Note: See TracChangeset
for help on using the changeset viewer.