Make WordPress Core

Ticket #46291: 46291.3.diff

File 46291.3.diff, 1.4 KB (added by iamdmitrymayorov, 6 years ago)

Updated patch.

  • src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php

    diff --git a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
    index 42fe89fb5f..6237a36080 100644
    a b class TwentyNineteen_Walker_Comment extends Walker_Comment { 
    3333                                <footer class="comment-meta">
    3434                                        <div class="comment-author vcard">
    3535                                                <?php
    36                                                 $comment_author_link = get_comment_author_link( $comment );
    37                                                 $comment_author_url  = get_comment_author_url( $comment );
    38                                                 $comment_author      = get_comment_author( $comment );
    39                                                 $avatar              = get_avatar( $comment, $args['avatar_size'] );
     36                                                $comment_author_url = get_comment_author_url( $comment );
     37                                                $comment_author     = get_comment_author( $comment );
     38                                                $avatar             = get_avatar( $comment, $args['avatar_size'] );
    4039                                                if ( 0 != $args['avatar_size'] ) {
    4140                                                        if ( empty( $comment_author_url ) ) {
    4241                                                                echo $avatar;
    class TwentyNineteen_Walker_Comment extends Walker_Comment { 
    7170                                                                        ),
    7271                                                                )
    7372                                                        ),
    74                                                         '<b class="fn">' . get_comment_author_link( $comment ) . '</b>'
     73                                                        '<b class="fn">' . $comment_author . '</b>'
    7574                                                );
    7675
    7776                                                if ( ! empty( $comment_author_url ) ) {