Index: trunk/includes/extend/akismet.php
===================================================================
--- trunk/includes/extend/akismet.php	(revision 1231774)
+++ trunk/includes/extend/akismet.php	(working copy)
@@ -162,7 +162,7 @@
 			'comment_author'                 => $user_data['name'],
 			'comment_author_email'           => $user_data['email'],
 			'comment_author_url'             => $user_data['website'],
-			'comment_content'                => $post_data['post_content'],
+			'comment_content'                => trim( $post_data['post_title'] . "\n\n" . $post_data['post_content'] ),
 			'comment_post_ID'                => $post_data['post_parent'],
 			'comment_type'                   => $post_data['post_type'],
 			'comment_total'                  => $user_data['total_posts'],
@@ -289,7 +289,7 @@
 			'comment_author'       => $_post->post_author ? get_the_author_meta( 'display_name', $_post->post_author ) : get_post_meta( $post_id, '_bbp_anonymous_name',    true ),
 			'comment_author_email' => $_post->post_author ? get_the_author_meta( 'email',        $_post->post_author ) : get_post_meta( $post_id, '_bbp_anonymous_email',   true ),
 			'comment_author_url'   => $_post->post_author ? bbp_get_user_profile_url(            $_post->post_author ) : get_post_meta( $post_id, '_bbp_anonymous_website', true ),
-			'comment_content'      => $_post->post_content,
+			'comment_content'      => trim( $_post->post_title . "\n\n" . $_post->post_content ),
 			'comment_date'         => $_post->post_date,
 			'comment_ID'           => $post_id,
 			'comment_post_ID'      => $_post->post_parent,
