mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
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:
parent
4bb33bf19c
commit
5432d10c58
@ -26,7 +26,7 @@ if ( empty( $post->comment_status ) ) {
|
||||
* Fires when a comment is attempted on a post that does not exist
|
||||
*
|
||||
* @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 );
|
||||
exit;
|
||||
@ -42,7 +42,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
|
||||
* Fires when a comment is attempted on a post that has comments closed
|
||||
*
|
||||
* @since unknown
|
||||
* @param int $comment_post_ID Post ID
|
||||
* @param int $comment_post_ID Post ID.
|
||||
*/
|
||||
do_action( 'comment_closed', $comment_post_ID );
|
||||
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
|
||||
*
|
||||
* @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 );
|
||||
exit;
|
||||
@ -60,7 +60,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
|
||||
* Fires when a comment is attempted on a post in draft mode
|
||||
*
|
||||
* @since unknown
|
||||
* @param int $comment_post_ID Post ID
|
||||
* @param int $comment_post_ID Post ID.
|
||||
*/
|
||||
do_action( 'comment_on_draft', $comment_post_ID );
|
||||
exit;
|
||||
@ -69,7 +69,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
|
||||
* Fires when a comment is attempted on a password-protected post
|
||||
*
|
||||
* @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 );
|
||||
exit;
|
||||
@ -78,7 +78,7 @@ if ( ! comments_open( $comment_post_ID ) ) {
|
||||
* Fires before a comment is posted
|
||||
*
|
||||
* @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 );
|
||||
}
|
||||
@ -133,8 +133,8 @@ $comment = get_comment($comment_id);
|
||||
*
|
||||
* @since 3.4.0
|
||||
*
|
||||
* @param object $comment Comment object
|
||||
* @param object $user WP_User object
|
||||
* @param object $comment Comment object.
|
||||
* @param WP_User $user User object. The user may not exist.
|
||||
*/
|
||||
do_action( 'set_comment_cookies', $comment, $user );
|
||||
|
||||
@ -145,8 +145,8 @@ $location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POS
|
||||
*
|
||||
* @since unknown
|
||||
*
|
||||
* @param string $location The 'redirect_to' URI sent via $_POST
|
||||
* @param object $comment Comment object
|
||||
* @param string $location The 'redirect_to' URI sent via $_POST.
|
||||
* @param object $comment Comment object.
|
||||
*/
|
||||
$location = apply_filters( 'comment_post_redirect', $location, $comment );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user