Changeset 46823 for trunk/src/wp-includes/comment.php
- Timestamp:
- 12/06/2019 10:41:26 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r46660 r46823 1685 1685 * @since 2.7.0 1686 1686 * 1687 * @param string $new_status New comment status.1688 * @param string $old_status Previous comment status.1689 * @param object $comment Comment data.1687 * @param string $new_status New comment status. 1688 * @param string $old_status Previous comment status. 1689 * @param WP_Comment $comment Comment object. 1690 1690 */ 1691 1691 function wp_transition_comment_status( $new_status, $old_status, $comment ) { … … 1717 1717 * @param int|string $new_status The new comment status. 1718 1718 * @param int|string $old_status The old comment status. 1719 * @param object $comment The comment data.1719 * @param WP_Comment $comment Comment object. 1720 1720 */ 1721 1721 do_action( 'transition_comment_status', $new_status, $old_status, $comment );
Note: See TracChangeset
for help on using the changeset viewer.