Changeset 25251
- Timestamp:
- 09/05/2013 04:11:34 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-comments-post.php
r25249 r25251 27 27 * 28 28 * @since unknown 29 * @param int $comment_post_ID Post ID 29 * @param int $comment_post_ID Post ID. 30 30 */ 31 31 do_action( 'comment_id_not_found', $comment_post_ID ); … … 43 43 * 44 44 * @since unknown 45 * @param int $comment_post_ID Post ID 45 * @param int $comment_post_ID Post ID. 46 46 */ 47 47 do_action( 'comment_closed', $comment_post_ID ); … … 52 52 * 53 53 * @since 2.9.0 54 * @param int $comment_post_ID Post ID 54 * @param int $comment_post_ID Post ID. 55 55 */ 56 56 do_action( 'comment_on_trash', $comment_post_ID ); … … 61 61 * 62 62 * @since unknown 63 * @param int $comment_post_ID Post ID 63 * @param int $comment_post_ID Post ID. 64 64 */ 65 65 do_action( 'comment_on_draft', $comment_post_ID ); … … 70 70 * 71 71 * @since unknown 72 * @param int $comment_post_ID Post ID 72 * @param int $comment_post_ID Post ID. 73 73 */ 74 74 do_action( 'comment_on_password_protected', $comment_post_ID ); … … 79 79 * 80 80 * @since unknown 81 * @param int $comment_post_ID Post ID 81 * @param int $comment_post_ID Post ID. 82 82 */ 83 83 do_action( 'pre_comment_on_post', $comment_post_ID ); … … 134 134 * @since 3.4.0 135 135 * 136 * @param object $comment Comment object 137 * @param object $user WP_User object136 * @param object $comment Comment object. 137 * @param WP_User $user User object. The user may not exist. 138 138 */ 139 139 do_action( 'set_comment_cookies', $comment, $user ); … … 146 146 * @since unknown 147 147 * 148 * @param string $location The 'redirect_to' URI sent via $_POST 149 * @param object $comment Comment object 148 * @param string $location The 'redirect_to' URI sent via $_POST. 149 * @param object $comment Comment object. 150 150 */ 151 151 $location = apply_filters( 'comment_post_redirect', $location, $comment );
Note: See TracChangeset
for help on using the changeset viewer.