Changeset 37423
- Timestamp:
- 05/12/2016 03:36:58 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r37342 r37423 2032 2032 * 2033 2033 * @since 1.2.0 2034 * 2035 * @param int $comment_ID The comment ID. 2036 */ 2037 do_action( 'edit_comment', $comment_ID ); 2034 * @since 4.6.0 The `$data` parameter was added. 2035 * 2036 * @param int $comment_ID The comment ID. 2037 * @param array $data Comment data. 2038 */ 2039 do_action( 'edit_comment', $comment_ID, $data ); 2038 2040 $comment = get_comment($comment_ID); 2039 2041 wp_transition_comment_status($comment->comment_approved, $old_status, $comment);
Note: See TracChangeset
for help on using the changeset viewer.