Make WordPress Core

Ticket #51533: 51533.patch

File 51533.patch, 1.2 KB (added by mukesh27, 4 years ago)

Patch that fixed the issue

  • src/wp-includes/class-walker-comment.php

     
    427427                                        </div><!-- .comment-author -->
    428428
    429429                                        <div class="comment-metadata">
    430                                                 <a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>">
    431                                                         <time datetime="<?php comment_time( 'c' ); ?>">
    432                                                                 <?php
    433                                                                         /* translators: 1: Comment date, 2: Comment time. */
    434                                                                         printf( __( '%1$s at %2$s' ), get_comment_date( '', $comment ), get_comment_time() );
    435                                                                 ?>
    436                                                         </time>
    437                                                 </a>
    438                                                 <?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?>
     430                                                <?php
     431                                                        printf(
     432                                                                '<a href="%s"><time datetime="%s">%s at %s</time></a>',
     433                                                                esc_url( get_comment_link( $comment, $args ) ),
     434                                                                get_the_time( 'c' ),
     435                                                                get_comment_date( '', $comment ),
     436                                                                get_comment_time()
     437                                                        );
     438                                                       
     439                                                        edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' );
     440                                                ?>
    439441                                        </div><!-- .comment-metadata -->
    440442
    441443                                        <?php if ( '0' == $comment->comment_approved ) : ?>