diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php
index e64086d..9b8006a 100644
|
a
|
b
|
if ( ( 'spam' === $comment_status || 'trash' === $comment_status ) && current_us
|
| 688 | 688 | if ( $this->user_can ) { |
| 689 | 689 | ?> |
| 690 | 690 | <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden"> |
| 691 | | <textarea class="comment" rows="1" cols="1"> |
| 692 | | <?php |
| | 691 | <textarea class="comment" rows="1" cols="1"><?php |
| 693 | 692 | /** This filter is documented in wp-admin/includes/comment.php */ |
| 694 | 693 | echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) ); |
| 695 | | ?> |
| 696 | | </textarea> |
| | 694 | ?></textarea> |
| 697 | 695 | <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div> |
| 698 | 696 | <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div> |
| 699 | 697 | <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div> |