From 786786b1a192db9222f8196c4d24e4d466b80245 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 23 Mar 2007 23:06:45 +0000 Subject: [PATCH] Add missing the_title filter. Props jhodgdon. fixes #4019 git-svn-id: https://develop.svn.wordpress.org/trunk@5094 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/edit.php b/wp-admin/edit.php index 44a3ddb6d6..47f5ad8b3c 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -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