Index: temp/trunk/html/install/index.php
===================================================================
--- temp/trunk/html/install/index.php	(revision 5420)
+++ temp/trunk/html/install/index.php	(revision 5421)
@@ -57,11 +57,12 @@
 // WEB¥µ¥¤¥È¤ÎÀßÄê
 case 'step1':
+	$skip = $_POST["db_skip"];
+	
 	//ÆþÎÏÃÍ¤Î¥¨¥é¡¼¥Á¥§¥Ã¥¯
-	$objPage->arrErr = lfCheckWEBError($objWebParam);
+	$objPage->arrErr = lfCheckWEBError($objWebParam, $skip);
 	if(count($objPage->arrErr) == 0) {
 
 		
 		// Å¹ÊÞ¤òÊÑ¹¹¤·¤Ê¤¤¾ì¹ç¤Ë¤Ï´°Î»²èÌÌ¤ØÁ«°Ü
-		$skip = $_POST["db_skip"];
 		if ($skip == "on") {
 			// ÀßÄê¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
@@ -435,10 +436,14 @@
 
 // ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯
-function lfCheckWebError($objFormParam) {
+function lfCheckWebError($objFormParam, $skip = "on") {
 	// ÆþÎÏ¥Ç¡¼¥¿¤òÅÏ¤¹¡£
 	$arrRet =  $objFormParam->getHashArray();
 	
-	
+	// 
+	if ($skip == "on") {
+		unset($arrRet["shop_name"], $arrRet["admin_mail"]);
+	}
 	sfprintr($arrRet);
+	
 	$objErr = new SC_CheckError($arrRet);
 	$objErr->arrErr = $objFormParam->checkError();
