Make WordPress Core

Changeset 25251


Ignore:
Timestamp:
09/05/2013 04:11:34 PM (11 years ago)
Author:
nacin
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-comments-post.php

    r25249 r25251  
    2727     *
    2828     * @since unknown
    29      * @param int $comment_post_ID Post ID
     29     * @param int $comment_post_ID Post ID.
    3030     */
    3131    do_action( 'comment_id_not_found', $comment_post_ID );
     
    4343     *
    4444     * @since unknown
    45      * @param int $comment_post_ID Post ID
     45     * @param int $comment_post_ID Post ID.
    4646     */
    4747    do_action( 'comment_closed', $comment_post_ID );
     
    5252     *
    5353     * @since 2.9.0
    54      * @param int $comment_post_ID Post ID
     54     * @param int $comment_post_ID Post ID.
    5555     */
    5656    do_action( 'comment_on_trash', $comment_post_ID );
     
    6161     *
    6262     * @since unknown
    63      * @param int $comment_post_ID Post ID
     63     * @param int $comment_post_ID Post ID.
    6464     */
    6565    do_action( 'comment_on_draft', $comment_post_ID );
     
    7070     *
    7171     * @since unknown
    72      * @param int $comment_post_ID Post ID
     72     * @param int $comment_post_ID Post ID.
    7373     */
    7474    do_action( 'comment_on_password_protected', $comment_post_ID );
     
    7979     *
    8080     * @since unknown
    81      * @param int $comment_post_ID Post ID
     81     * @param int $comment_post_ID Post ID.
    8282     */
    8383    do_action( 'pre_comment_on_post', $comment_post_ID );
     
    134134 * @since 3.4.0
    135135 *
    136  * @param object $comment Comment object
    137  * @param object $user    WP_User object
     136 * @param object $comment Comment object.
     137 * @param WP_User $user   User object. The user may not exist.
    138138 */
    139139do_action( 'set_comment_cookies', $comment, $user );
     
    146146 * @since unknown
    147147 *
    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.
    150150 */
    151151$location = apply_filters( 'comment_post_redirect', $location, $comment );
Note: See TracChangeset for help on using the changeset viewer.