Index: trunk/wp-content/plugins/xpressme/xpressme_class.php
===================================================================
--- trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 152)
+++ trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 155)
@@ -28,4 +28,5 @@
 	var $more_link_text;
 	var $viewer_type;
+	var $is_multi_user;
 	//constructor
 	function XPressME_Class()
@@ -77,4 +78,5 @@
 		$this->more_link_text = __('more', 'xpressme');
 		$this->viewer_type = 'xoops';
+		$this->is_multi_user = false;
 
 	}
@@ -124,5 +126,6 @@
 			'excerpt_length_character' => $this->excerpt_length_character,
 			'more_link_text' => $this->more_link_text,
-			'viewer_type' => $this->viewer_type
+			'viewer_type' => $this->viewer_type,
+			'is_multi_user' => $this->is_multi_user
 		);
 		if ($mode == 'add_new') {
@@ -235,5 +238,5 @@
 		$this->more_link_text = stripslashes(trim($_POST['ch_more_link_text']));
 		$this->viewer_type = stripslashes(trim($_POST['ch_viewer_type']));
-		
+		$this->is_multi_user = stripslashes(trim($_POST['ch_is_multi_user']));
 		global $xoops_db;
 		$table = get_wp_prefix() . 'group_role';	
@@ -652,4 +655,11 @@
 												);
 		
+		echo				$this->yes_no_radio_option('is_multi_user',
+												__('Select Multi user mode','xpressme'),
+												__('YES','xpressme'),
+												__('NO','xpressme')
+												);
+		
+		
 		echo 				$this->single_post_navi_option();
 		echo 				$this->posts_page_navi_option();
