Make WordPress Core

Ticket #46931: 46931.diff

File 46931.diff, 1.5 KB (added by subrataemfluence, 6 years ago)
  • wp-includes/comment-template.php

    diff --git wp-includes/comment-template.php wp-includes/comment-template.php
    index 41031cb..a0e058d 100755
    function comment_id_fields( $id = 0 ) { 
    19231923 *
    19241924 * @global WP_Comment $comment Current comment.
    19251925 *
    1926  * @param string $noreplytext  Optional. Text to display when not replying to a comment.
    1927  *                             Default false.
    1928  * @param string $replytext    Optional. Text to display when replying to a comment.
    1929  *                             Default false. Accepts "%s" for the author of the comment
    1930  *                             being replied to.
    1931  * @param string $linktoparent Optional. Boolean to control making the author's name a link
    1932  *                             to their comment. Default true.
     1926 * @param false|string $noreplytext  Optional. Text to display when not replying to a comment.
     1927 *                                   Default false.
     1928 * @param false|string $replytext    Optional. Text to display when replying to a comment.
     1929 *                                   Default false. Accepts "%s" for the author of the comment
     1930 *                                   being replied to.
     1931 * @param true|string $linktoparent Optional. Boolean to control making the author's name a link
     1932 *                                   to their comment. Default true.
    19331933 */
    19341934function comment_form_title( $noreplytext = false, $replytext = false, $linktoparent = true ) {
    19351935        global $comment;