Index: buddypress-enable.php
===================================================================
--- buddypress-enable.php	(revision 865)
+++ buddypress-enable.php	(working copy)
@@ -8,6 +8,15 @@
 Author URI: http://apeatling.wordpress.com/
 */
 
+function for_buddypress_pre_post($post_text, $post_id, $topic_id){
+	$post_text = stripslashes(stripslashes_deep($post_text));
+	$post_text = str_replace( '/amp/', '&', $post_text );
+	$post_text = html_entity_decode( $post_text, ENT_COMPAT, "UTF-8" );
+
+	return $post_text;
+}
+add_filter( 'pre_post', 'for_buddypress_pre_post',10,3);
+
 function for_buddypress_strip_tags( $_post, $post ) {
 	
 	// Cast to an array
