Changeset 16365 for trunk/wp-includes/comment.php
- Timestamp:
- 11/14/2010 03:50:02 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r16357 r16365 1162 1162 if ( $new_status != $old_status ) { 1163 1163 do_action('transition_comment_status', $new_status, $old_status, $comment); 1164 do_action("comment_ ${old_status}_to_$new_status", $comment);1165 } 1166 do_action("comment_ ${new_status}_$comment->comment_type", $comment->comment_ID, $comment);1164 do_action("comment_{$old_status}_to_{$new_status}", $comment); 1165 } 1166 do_action("comment_{$new_status}_{$comment->comment_type}", $comment->comment_ID, $comment); 1167 1167 } 1168 1168
Note: See TracChangeset
for help on using the changeset viewer.