Index: E:/EclipseWork/WordPressDev/wp-includes/general-template.php
===================================================================
--- E:/EclipseWork/WordPressDev/wp-includes/general-template.php	(revision 4870)
+++ E:/EclipseWork/WordPressDev/wp-includes/general-template.php	(working copy)
@@ -203,8 +203,9 @@
 
 	// If there is a post
 	if ( is_single() || is_page() ) {
-		$title = strip_tags($posts[0]->post_title);
-		$title = apply_filters('single_post_title', $title);
+		$title = $posts[0]->post_title;
+		$title = apply_filters('single_post_title', $title);	
+		$title = strip_tags($title);
 	}
 
 	$prefix = '';

