mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 00:01:27 +01:00
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:
parent
3b7a8a7eca
commit
f0ac0275e8
@ -345,9 +345,9 @@ class Walker_Comment extends Walker {
|
||||
get_comment_time()
|
||||
)
|
||||
);
|
||||
?>
|
||||
|
||||
<?php edit_comment_link( __( '(Edit)' ), ' ', '' ); ?>
|
||||
edit_comment_link( __( '(Edit)' ), ' ', '' );
|
||||
?>
|
||||
</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 ) : ?>
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user