Replace echo __() with _e().

props marsjaninzmarsa.
fixes #32239.

git-svn-id: https://develop.svn.wordpress.org/trunk@32333 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2015-05-03 16:17:06 +00:00
parent 72c437c2a8
commit 2848b8a911
6 changed files with 7 additions and 7 deletions

View File

@@ -149,7 +149,7 @@ if ( $post_id )
)
);
else
echo __('Comments');
_e( 'Comments' );
if ( isset($_REQUEST['s']) && $_REQUEST['s'] )
echo '<span class="subtitle">' . sprintf( __( 'Search results for &#8220;%s&#8221;' ), wp_html_excerpt( esc_html( wp_unslash( $_REQUEST['s'] ) ), 50, '&hellip;' ) ) . '</span>'; ?>