Fixes for hook inline docs in wp-comments-post.php. see #25229.

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


git-svn-id: http://core.svn.wordpress.org/trunk@25219 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-09-05 16:12:09 +00:00
parent 4bb33bf19c
commit 5432d10c58
1 changed files with 10 additions and 10 deletions

View File

@ -26,7 +26,7 @@ if ( empty( $post->comment_status ) ) {
* Fires when a comment is attempted on a post that does not exist * Fires when a comment is attempted on a post that does not exist
* *
* @since unknown * @since unknown
* @param int $comment_post_ID Post ID * @param int $comment_post_ID Post ID.
*/ */
do_action( 'comment_id_not_found', $comment_post_ID ); do_action( 'comment_id_not_found', $comment_post_ID );
exit; exit;
@ -42,7 +42,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
* Fires when a comment is attempted on a post that has comments closed * Fires when a comment is attempted on a post that has comments closed
* *
* @since unknown * @since unknown
* @param int $comment_post_ID Post ID * @param int $comment_post_ID Post ID.
*/ */
do_action( 'comment_closed', $comment_post_ID ); do_action( 'comment_closed', $comment_post_ID );
wp_die( __('Sorry, comments are closed for this item.') ); wp_die( __('Sorry, comments are closed for this item.') );
@ -51,7 +51,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
* Fires when a comment is attempted on a trashed post * Fires when a comment is attempted on a trashed post
* *
* @since 2.9.0 * @since 2.9.0
* @param int $comment_post_ID Post ID * @param int $comment_post_ID Post ID.
*/ */
do_action( 'comment_on_trash', $comment_post_ID ); do_action( 'comment_on_trash', $comment_post_ID );
exit; exit;
@ -60,7 +60,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
* Fires when a comment is attempted on a post in draft mode * Fires when a comment is attempted on a post in draft mode
* *
* @since unknown * @since unknown
* @param int $comment_post_ID Post ID * @param int $comment_post_ID Post ID.
*/ */
do_action( 'comment_on_draft', $comment_post_ID ); do_action( 'comment_on_draft', $comment_post_ID );
exit; exit;
@ -69,7 +69,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
* Fires when a comment is attempted on a password-protected post * Fires when a comment is attempted on a password-protected post
* *
* @since unknown * @since unknown
* @param int $comment_post_ID Post ID * @param int $comment_post_ID Post ID.
*/ */
do_action( 'comment_on_password_protected', $comment_post_ID ); do_action( 'comment_on_password_protected', $comment_post_ID );
exit; exit;
@ -78,7 +78,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
* Fires before a comment is posted * Fires before a comment is posted
* *
* @since unknown * @since unknown
* @param int $comment_post_ID Post ID * @param int $comment_post_ID Post ID.
*/ */
do_action( 'pre_comment_on_post', $comment_post_ID ); do_action( 'pre_comment_on_post', $comment_post_ID );
} }
@ -133,8 +133,8 @@ $comment = get_comment($comment_id);
* *
* @since 3.4.0 * @since 3.4.0
* *
* @param object $comment Comment object * @param object $comment Comment object.
* @param object $user WP_User object * @param WP_User $user User object. The user may not exist.
*/ */
do_action( 'set_comment_cookies', $comment, $user ); do_action( 'set_comment_cookies', $comment, $user );
@ -145,8 +145,8 @@ $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POS
* *
* @since unknown * @since unknown
* *
* @param string $location The 'redirect_to' URI sent via $_POST * @param string $location The 'redirect_to' URI sent via $_POST.
* @param object $comment Comment object * @param object $comment Comment object.
*/ */
$location = apply_filters( 'comment_post_redirect', $location, $comment ); $location = apply_filters( 'comment_post_redirect', $location, $comment );