diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 8a1e995fe0..5f5c1c31d8 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -330,8 +330,12 @@ function wp_comment_reply($position = '1', $checkbox = false, $mode = 'single', echo $content; return; } - - $wp_list_table = get_list_table('WP_Comments_List_Table'); + + if ( $mode == 'single' ) { + $wp_list_table = get_list_table('WP_Post_Comments_List_Table'); + } else { + $wp_list_table = get_list_table('WP_Comments_List_Table'); + } ?>