Index: trunk/wp-content/plugins/xpressme/xpressme_class.php
===================================================================
--- trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 201)
+++ trunk/wp-content/plugins/xpressme/xpressme_class.php	(revision 202)
@@ -31,4 +31,5 @@
 	var $meta_keyword_type;
 	var $meta_description_type;
+	var $meta_robot_type;
 	//constructor
 	function XPressME_Class()
@@ -83,4 +84,5 @@
 		$this->meta_keyword_type = 'xoops';
 		$this->meta_description_type = 'xoops';
+		$this->meta_robot_type = 'xoops';	
 	}
 	
@@ -132,5 +134,6 @@
 			'is_multi_user' => $this->is_multi_user,
 			'meta_keyword_type' => $this->meta_keyword_type,
-			'meta_description_type' => $this->meta_description_type
+			'meta_description_type' => $this->meta_description_type,
+			'meta_robot_type' => $this->meta_robot_type
 		);
 		if ($mode == 'add_new') {
@@ -246,4 +249,5 @@
 		$this->meta_keyword_type = stripslashes(trim($_POST['ch_meta_keyword_type']));
 		$this->meta_description_type = stripslashes(trim($_POST['ch_meta_description_type']));
+		$this->meta_robot_type = stripslashes(trim($_POST['ch_meta_robot_type']));
 
 		global $xoops_db;
@@ -661,4 +665,19 @@
 		$form .= "</td>\n";
 		$form .= "</tr>\n";
+
+		$form .= "<tr>\n";
+		$form .=  "<td>" . __('Select the Header Robots Index.', 'xpressme') . "</td>\n";
+		$form .= "<td>\n";
+		$form .= '<select name="ch_meta_robot_type">' . "\n";
+		$form .= '<option value="xoops" ';
+		if ($this->meta_robot_type == 'xoops') $form .= ' selected="selected"';
+		$form .= '>'.__('Xoops Robots Index', 'xpressme') ."</option>\n";
+		$form .= '<option value="wordpress" ';
+		if ($this->meta_robot_type == 'wordpress') $form .= ' selected="selected"';
+		$form .= '>'.__('WordPress Robots Index', 'xpressme') ."</option>\n";
+		$form .= "</select><br />\n";
+		$form .= "</td>\n";
+		$form .= "</tr>\n";
+
 		$form .= "</table>\n";
 		
