Secure translations in content.php.

See #737.
This commit is contained in:
Fränk Klein 2015-05-05 12:26:14 +02:00
parent 6fea1077d8
commit d5db6f11b5
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', '_s' ),
wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', '_s' ), array( 'span' => array() ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );
?>