diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php
index 6ecccf637b..948898fd7a 100644
a
|
b
|
class WP_Comments_List_Table extends WP_List_Table { |
917 | 917 | ?> |
918 | 918 | <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden"> |
919 | 919 | <textarea class="comment" rows="1" cols="1"><?php echo esc_textarea( $comment_content ); ?></textarea> |
920 | | <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div> |
921 | | <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div> |
| 920 | <div class="author-email"><?php echo esc_html( $comment->comment_author_email ); ?></div> |
| 921 | <div class="author"><?php echo esc_html( $comment->comment_author ); ?></div> |
922 | 922 | <div class="author-url"><?php echo esc_url( $comment->comment_author_url ); ?></div> |
923 | 923 | <div class="comment_status"><?php echo $comment->comment_approved; ?></div> |
924 | 924 | </div> |