Skip to content

Commit

Permalink
Fixes for inline documentation for hooks in wp-comments-post.php.
Browse files Browse the repository at this point in the history
Adds missing `@since` versions, spacing, and language tweaks.

See #26869, #25229, [25249].

Built from https://develop.svn.wordpress.org/trunk@27144


git-svn-id: http://core.svn.wordpress.org/trunk@27011 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
DrewAPicture committed Feb 9, 2014
1 parent 025ea22 commit 3f6ef53
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions wp-comments-post.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
/**
* Fires when a comment is attempted on a post that does not exist.
*
* @since unknown
* @since 1.5.0
*
* @param int $comment_post_ID Post ID.
*/
do_action( 'comment_id_not_found', $comment_post_ID );
Expand All @@ -41,7 +42,8 @@
/**
* Fires when a comment is attempted on a post that has comments closed.
*
* @since unknown
* @since 1.5.0
*
* @param int $comment_post_ID Post ID.
*/
do_action( 'comment_closed', $comment_post_ID );
Expand All @@ -51,6 +53,7 @@
* Fires when a comment is attempted on a trashed post.
*
* @since 2.9.0
*
* @param int $comment_post_ID Post ID.
*/
do_action( 'comment_on_trash', $comment_post_ID );
Expand All @@ -59,7 +62,8 @@
/**
* Fires when a comment is attempted on a post in draft mode.
*
* @since unknown
* @since 1.5.2
*
* @param int $comment_post_ID Post ID.
*/
do_action( 'comment_on_draft', $comment_post_ID );
Expand All @@ -68,7 +72,8 @@
/**
* Fires when a comment is attempted on a password-protected post.
*
* @since unknown
* @since 2.9.0
*
* @param int $comment_post_ID Post ID.
*/
do_action( 'comment_on_password_protected', $comment_post_ID );
Expand All @@ -77,7 +82,8 @@
/**
* Fires before a comment is posted.
*
* @since unknown
* @since 2.8.0
*
* @param int $comment_post_ID Post ID.
*/
do_action( 'pre_comment_on_post', $comment_post_ID );
Expand Down Expand Up @@ -141,9 +147,9 @@
$location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;

/**
* The location URI to send commenter after posting.
* Filter the location URI to send the commenter after posting.
*
* @since unknown
* @since 2.0.5
*
* @param string $location The 'redirect_to' URI sent via $_POST.
* @param object $comment Comment object.
Expand Down

0 comments on commit 3f6ef53

Please sign in to comment.