Merge pull request #855 from jrfnl/feature/fix-travis-build

Fix failing Travis build because of new way of echoing site `$description`
This commit is contained in:
David A. Kennedy 2015-11-11 10:26:01 -05:00
commit ee444389b3
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; ?></p>
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
<?php endif; ?>
</div><!-- .site-branding -->