Index: trunk/wp-content/plugins/xpressme/xpressme_class.php
===================================================================
--- trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 26)
+++ trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 28)
@@ -7,5 +7,5 @@
 	var $is_use_xoops_upload_path;
 	var $is_theme_sidebar_disp;
-	
+	var $is_save_post_revision;
 	//constructor
 	function XPressME_Class()
@@ -32,4 +32,5 @@
 		$this->is_use_xoops_upload_path = true;
 		$this->is_theme_sidebar_disp = true;
+		$this->is_save_post_revision = true;
 	}
 	
@@ -65,4 +66,5 @@
 		$this->is_use_xoops_upload_path = stripslashes(trim($_POST['ch_is_use_xoops_upload_path']));
 		$this->is_theme_sidebar_disp = stripslashes(trim($_POST['ch_is_theme_sidebar_disp']));
+		$this->is_save_post_revision = stripslashes(trim($_POST['ch_is_save_post_revision']));
 	}
 	
@@ -116,4 +118,9 @@
 												__('NO','xpressme')
 												);
+		echo				$this->yes_no_radio_option('is_save_post_revision',
+												__('The change tracking of the post is preserved','xpressme'),
+												__('YES','xpressme'),
+												__('NO','xpressme')
+												);
 			
 //		$this->is_use_xoops_upload_path_html();
@@ -149,4 +156,5 @@
 		return $uploads;
 	}	
+
 }
 ?>
