Index: trunk/wp-content/plugins/xpressme/xpressme.php
===================================================================
--- trunk/wp-content/plugins/xpressme/xpressme.php	(revision 96)
+++ trunk/wp-content/plugins/xpressme/xpressme.php	(revision 104)
@@ -54,4 +54,19 @@
 //require_once('../include/custom_functions.php');
 
+//D3Forum Comment Integration
+if ($XPressME->is_use_d3forum){
+	require_once dirname( __FILE__ ).'/include/d3forum_comment_synchro.php' ;
+	add_action("comment_post",	"onaction_comment_post");
+	add_action("edit_comment",	"onaction_edit_comment");
+	add_action("delete_comment","onaction_delete_comment");
+	add_action("delete_post",	"onaction_delete_post");
+	add_action("wp_set_comment_status" , "onaction_comment_apobe");
+	
+	
+	add_filter('comments_template', "disp_d3forum_comments" );
+
+}
+
+
 // SQL debug windows
 add_filter('query', array(&$XPressME, 'xpress_sql_debug'));
