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..e73d12b 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 | 691 | <?php |
693 | | /** This filter is documented in wp-admin/includes/comment.php */ |
694 | | echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) ); |
| 692 | /** This filter is documented in wp-admin/includes/comment.php */ |
| 693 | $filtered_comment = apply_filters( 'comment_edit_pre', $comment->comment_content ); |
695 | 694 | ?> |
696 | | </textarea> |
| 695 | |
| 696 | <textarea class="comment" rows="1" cols="1"><?php echo esc_textarea( $filtered_comment ); ?></textarea> |
697 | 697 | <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div> |
698 | 698 | <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div> |
699 | 699 | <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div> |