Changeset 25273 for trunk/src/wp-comments-post.php
- Timestamp:
- 09/06/2013 01:37:59 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-comments-post.php
r25251 r25273 24 24 if ( empty( $post->comment_status ) ) { 25 25 /** 26 * Fires when a comment is attempted on a post that does not exist 26 * Fires when a comment is attempted on a post that does not exist. 27 27 * 28 28 * @since unknown … … 40 40 if ( ! comments_open( $comment_post_ID ) ) { 41 41 /** 42 * Fires when a comment is attempted on a post that has comments closed 42 * Fires when a comment is attempted on a post that has comments closed. 43 43 * 44 44 * @since unknown … … 49 49 } elseif ( 'trash' == $status ) { 50 50 /** 51 * Fires when a comment is attempted on a trashed post 51 * Fires when a comment is attempted on a trashed post. 52 52 * 53 53 * @since 2.9.0 … … 58 58 } elseif ( ! $status_obj->public && ! $status_obj->private ) { 59 59 /** 60 * Fires when a comment is attempted on a post in draft mode 60 * Fires when a comment is attempted on a post in draft mode. 61 61 * 62 62 * @since unknown … … 67 67 } elseif ( post_password_required( $comment_post_ID ) ) { 68 68 /** 69 * Fires when a comment is attempted on a password-protected post 69 * Fires when a comment is attempted on a password-protected post. 70 70 * 71 71 * @since unknown … … 76 76 } else { 77 77 /** 78 * Fires before a comment is posted 78 * Fires before a comment is posted. 79 79 * 80 80 * @since unknown … … 130 130 131 131 /** 132 * Perform other actions when comment cookies are set 132 * Perform other actions when comment cookies are set. 133 133 * 134 134 * @since 3.4.0 … … 142 142 143 143 /** 144 * The location URI to send commenter after posting 144 * The location URI to send commenter after posting. 145 145 * 146 146 * @since unknown
Note: See TracChangeset
for help on using the changeset viewer.