Index: wp-includes/comment.php
===================================================================
--- wp-includes/comment.php	(revision 18627)
+++ wp-includes/comment.php	(working copy)
@@ -1717,7 +1717,7 @@
 	$excerpt = str_replace(']]>', ']]&gt;', $excerpt);
 	$excerpt = wp_html_excerpt($excerpt, 252) . '...';
 
-	$post_title = apply_filters('the_title', $post->post_title);
+	$post_title = apply_filters('the_title', $post->post_title, $post->ID);
 	$post_title = strip_tags($post_title);
 
 	if ( $to_ping ) {
Index: wp-includes/general-template.php
===================================================================
--- wp-includes/general-template.php	(revision 18627)
+++ wp-includes/general-template.php	(working copy)
@@ -1033,7 +1033,7 @@
 					$url  = get_permalink($arcresult);
 					$arc_title = $arcresult->post_title;
 					if ( $arc_title )
-						$text = strip_tags(apply_filters('the_title', $arc_title));
+						$text = strip_tags(apply_filters('the_title', $arc_title, $arcresult->ID));
 					else
 						$text = $arcresult->ID;
 					$output .= get_archives_link($url, $text, $format, $before, $after);
Index: wp-includes/deprecated.php
===================================================================
--- wp-includes/deprecated.php	(revision 18627)
+++ wp-includes/deprecated.php	(working copy)
@@ -149,7 +149,7 @@
 
 	$string = '<a href="'.get_permalink($post->ID).'">'.$previous;
 	if ( 'yes' == $title )
-		$string .= apply_filters('the_title', $post->post_title, $post);
+		$string .= apply_filters('the_title', $post->post_title, $post->ID);
 	$string .= '</a>';
 	$format = str_replace('%', $string, $format);
 	echo $format;
@@ -185,7 +185,7 @@
 
 	$string = '<a href="'.get_permalink($post->ID).'">'.$next;
 	if ( 'yes' == $title )
-		$string .= apply_filters('the_title', $post->post_title, $nextpost);
+		$string .= apply_filters('the_title', $post->post_title, $post->ID);
 	$string .= '</a>';
 	$format = str_replace('%', $string, $format);
 	echo $format;
