Make WordPress Core

Ticket #33304: 33304.patch

File 33304.patch, 976 bytes (added by dimadin, 11 years ago)
  • wp-includes/comment.php

     
    21312131         *
    21322132         * @since 3.1.0
    21332133         *
    2134          * @param string $comment_author       Comment author's name.
    2135          * @param string $comment_author_email Comment author's email.
    2136          * @param string $comment_author_url   Comment author's URL.
     2134         * @param array $comment_author_data {
     2135         *     Array of arguments of current commenter.
     2136         *
     2137         *     @type string $comment_author       The name of the author of the comment. Default empty.
     2138         *     @type string $comment_author_email The email address of the `$comment_author`. Default empty.
     2139         *     @type string $comment_author_url   The URL address of the `$comment_author`. Default empty.
     2140         * }
    21372141         */
    21382142        return apply_filters( 'wp_get_current_commenter', compact('comment_author', 'comment_author_email', 'comment_author_url') );
    21392143}