Index: E:/EclipseWork/WordPressDev/wp-includes/post-template.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-includes/post-template.php	(revision 5718)
+++ E:/EclipseWork/WordPressDev/wp-includes/post-template.php	(working copy)
@@ -17,7 +17,7 @@
 
 
 function the_title($before = '', $after = '', $echo = true) {
-	$title = get_the_title();
+	$title = get_the_title( 0, false );
 	if ( strlen($title) > 0 ) {
 		$title = apply_filters('the_title', $before . $title . $after, $before, $after);
 		if ( $echo )
@@ -28,7 +28,7 @@
 }
 
 
-function get_the_title($id = 0) {
+function get_the_title($id = 0, $filter = true ) {
 	$post = &get_post($id);
 
 	$title = $post->post_title;
@@ -37,6 +37,9 @@
 	else if ( 'private' == $post->post_status )
 		$title = sprintf(__('Private: %s'), $title);
 
+	if( $filter ) 
+		$title = apply_filters( 'the_title', $title );
+		
 	return $title;
 }
 
Index: E:/EclipseWork/WordPressDev/wp-includes/feed-rss2-comments.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-includes/feed-rss2-comments.php	(revision 5718)
+++ E:/EclipseWork/WordPressDev/wp-includes/feed-rss2-comments.php	(working copy)
@@ -29,7 +29,6 @@
 		<title><?php
 			if ( !is_singular() ) {
 				$title = get_the_title($comment_post->ID);
-				$title = apply_filters('the_title', $title);
 				$title = apply_filters('the_title_rss', $title);
 				printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
 			} else {
Index: E:/EclipseWork/WordPressDev/wp-includes/feed.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-includes/feed.php	(revision 5718)
+++ E:/EclipseWork/WordPressDev/wp-includes/feed.php	(working copy)
@@ -22,7 +22,6 @@
 
 function get_the_title_rss() {
 	$title = get_the_title();
-	$title = apply_filters('the_title', $title);
 	$title = apply_filters('the_title_rss', $title);
 	return $title;
 }
Index: E:/EclipseWork/WordPressDev/wp-includes/comment-template.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-includes/comment-template.php	(revision 5718)
+++ E:/EclipseWork/WordPressDev/wp-includes/comment-template.php	(working copy)
@@ -364,7 +364,7 @@
 	if (!empty($CSSclass)) {
 		echo ' class="'.$CSSclass.'"';
 	}
-	$title = attribute_escape(apply_filters('the_title', get_the_title()));
+	$title = attribute_escape(get_the_title());
 	echo ' title="' . sprintf( __('Comment on %s'), $title ) .'">';
 	comments_number($zero, $one, $more, $number);
 	echo '</a>';
Index: E:/EclipseWork/WordPressDev/wp-includes/feed-atom-comments.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-includes/feed-atom-comments.php	(revision 5718)
+++ E:/EclipseWork/WordPressDev/wp-includes/feed-atom-comments.php	(working copy)
@@ -33,7 +33,6 @@
 		<title><?php
 			if ( !is_singular() ) {
 				$title = get_the_title($comment_post->ID);
-				$title = apply_filters('the_title', $title);
 				$title = apply_filters('the_title_rss', $title);
 				printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
 			} else {
Index: E:/EclipseWork/WordPressDev/wp-admin/index.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-admin/index.php	(revision 5718)
+++ E:/EclipseWork/WordPressDev/wp-admin/index.php	(working copy)
@@ -49,7 +49,7 @@
 <?php
 if ( $comments ) {
 foreach ($comments as $comment) {
-	echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . apply_filters('the_title', get_the_title($comment->comment_post_ID)) . '</a>');
+	echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>');
 	edit_comment_link(__("Edit"), ' <small>(', ')</small>');
 	echo '</li>';
 }
