Comments: Further remove unnecessary context switch in `Walker_Comment`.

Follow-up to [49157].

See #51533.
Built from https://develop.svn.wordpress.org/trunk@49160


git-svn-id: http://core.svn.wordpress.org/trunk@48922 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-10-15 15:26:05 +00:00
parent 3b7a8a7eca
commit f0ac0275e8
2 changed files with 5 additions and 5 deletions

View File

@ -345,9 +345,9 @@ class Walker_Comment extends Walker {
get_comment_time()
)
);
?>
<?php edit_comment_link( __( '(Edit)' ), '&nbsp;&nbsp;', '' ); ?>
edit_comment_link( __( '(Edit)' ), ' &nbsp;&nbsp;', '' );
?>
</div>
<?php
@ -445,9 +445,9 @@ class Walker_Comment extends Walker {
get_comment_time()
)
);
?>
<?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?>
edit_comment_link( __( 'Edit' ), ' <span class="edit-link">', '</span>' );
?>
</div><!-- .comment-metadata -->
<?php if ( '0' == $comment->comment_approved ) : ?>

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6-alpha-49159';
$wp_version = '5.6-alpha-49160';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.