Add missing the_title filter. Props jhodgdon. fixes #4019

git-svn-id: http://svn.automattic.com/wordpress/trunk@5094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-03-23 23:06:45 +00:00
parent eed1eedc5f
commit 81bf28dd0c
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ if ( is_month() ) {
printf(__('Search for “%s”'), wp_specialchars($_GET['s']) );
} else {
if ( is_single() )
printf(__('Comments on %s'), $post->post_title);
printf(__('Comments on %s'), apply_filters( "the_title", $post->post_title));
elseif ( ! is_paged() || get_query_var('paged') == 1 )
_e('Last 15 Posts');
else