Fix PHPCS issue

This commit is contained in:
Kelly Dwan 2019-11-21 14:32:58 -05:00
parent de07108905
commit 46bdb89c3b
No known key found for this signature in database
GPG key ID: 8BA5575F3D11575D

View file

@ -55,7 +55,10 @@ get_header();
<h2><?php esc_html_e( 'About', 'wporg' ); ?></h2>
<div class="pledge-company-description">
<?php echo wpautop( wp_kses_data( $post->{ META_PREFIX . 'org-description' } ) ); ?>
<?php
// phpcs:ignore WordPress.Security.EscapeOutput -- wp_kses_data escapes the content.
echo wpautop( wp_kses_data( $post->{ META_PREFIX . 'org-description' } ) );
?>
</div>
<?php if ( ! empty( $contributors ) ) : ?>