Allow limited HTML when rendering failure messages (CSV import).

This commit is contained in:
barryhughes 2022-02-28 19:34:19 -08:00
parent 5af5be5100
commit 2874a22fe2
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ if ( ! defined( 'ABSPATH' ) ) {
?>
<tr>
<th><code><?php echo esc_html( $error_data['row'] ); ?></code></th>
<td><?php echo esc_html( $error->get_error_message() ); ?></td>
<td><?php echo wp_kses_post( $error->get_error_message() ); ?></td>
</tr>
<?php
}