Make WordPress Core

Ticket #61681: comment-template.patch

File comment-template.patch, 1.8 KB (added by ambrosiawt, 8 weeks ago)
  • .php

    old new  
    6262function comment_author( $comment_id = 0 ) {
    6363        $comment = get_comment( $comment_id );
    6464
    65         $comment_author = get_comment_author( $comment );
     65        $comment_author = get_comment_author( $comment->comment_ID );
    6666
    6767        /**
    6868         * Filters the comment author's name for display.
     
    230230        $comment_id = ! empty( $comment->comment_ID ) ? $comment->comment_ID : (string) $comment_id;
    231231
    232232        $comment_author_url = get_comment_author_url( $comment );
    233         $comment_author     = get_comment_author( $comment );
     233        $comment_author     = get_comment_author( $comment_id );
    234234
    235235        if ( empty( $comment_author_url ) || 'http://' === $comment_author_url ) {
    236236                $comment_author_link = $comment_author;
     
    10271027                $parent = get_comment( $comment->comment_parent );
    10281028                if ( $parent ) {
    10291029                        $parent_link = esc_url( get_comment_link( $parent ) );
    1030                         $name        = get_comment_author( $parent );
     1030                        $name        = get_comment_author( $parent->comment_ID );
    10311031
    10321032                        $comment_text = sprintf(
    10331033                                /* translators: %s: Comment link. */
     
    18061806                        'postid'         => $post->ID,
    18071807                        'belowelement'   => $args['add_below'] . '-' . $comment->comment_ID,
    18081808                        'respondelement' => $args['respond_id'],
    1809                         'replyto'        => sprintf( $args['reply_to_text'], get_comment_author( $comment ) ),
     1809                        'replyto'        => sprintf( $args['reply_to_text'], get_comment_author( $comment->comment_ID ) ),
    18101810                );
    18111811
    18121812                $data_attribute_string = '';
     
    18301830                                )
    18311831                        ) . '#' . $args['respond_id'],
    18321832                        $data_attribute_string,
    1833                         esc_attr( sprintf( $args['reply_to_text'], get_comment_author( $comment ) ) ),
     1833                        esc_attr( sprintf( $args['reply_to_text'], get_comment_author( $comment->comment_ID ) ) ),
    18341834                        $args['reply_text']
    18351835                );
    18361836        }