Index: branches/dev/html/install/index.php
===================================================================
--- branches/dev/html/install/index.php	(revision 11478)
+++ branches/dev/html/install/index.php	(revision 11492)
@@ -258,25 +258,23 @@
 	
 	// ¥µ¥¤¥È¾ðÊó¤òÁ÷¿®¤·¤Æ¤âÎÉ¤¤¾ì¹ç¤Ë¤ÏÁ÷¤ë
-	if($_POST['send_info'] == "true"){
-		$req = new HTTP_Request("http://www.ec-cube.net/mall/use_site.php");
-		$req->setMethod(HTTP_REQUEST_METHOD_POST);
-		
-		$arrSendData = array();
-		foreach($_POST as $key => $val){
-			if (ereg("^senddata_*", $key)){
-				$arrSendDataTmp = array(str_replace("senddata_", "", $key) => $val);
-				$arrSendData = array_merge($arrSendData, $arrSendDataTmp);
-			}
-		}
-		
-		$req->addPostDataArray($arrSendData);
-		
-		if (!PEAR::isError($req->sendRequest())) {
-			$response1 = $req->getResponseBody();
-		} else {
-			$response1 = "";
-		}
-		$req->clearPostData();
-	}
+	$req = new HTTP_Request("http://www.ec-cube.net/mall/use_site.php");
+	$req->setMethod(HTTP_REQUEST_METHOD_POST);
+	
+	$arrSendData = array();
+	foreach($_POST as $key => $val){
+		if (ereg("^senddata_*", $key)){
+			$arrSendDataTmp = array(str_replace("senddata_", "", $key) => $val);
+			$arrSendData = array_merge($arrSendData, $arrSendDataTmp);
+		}
+	}
+	
+	$req->addPostDataArray($arrSendData);
+	
+	if (!PEAR::isError($req->sendRequest())) {
+		$response1 = $req->getResponseBody();
+	} else {
+		$response1 = "";
+	}
+	$req->clearPostData();
 	
 	break;
@@ -435,4 +433,20 @@
 }
 
+// STEP0_1²èÌÌ¤ÎÉ½¼¨(¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼) 
+function lfDispStep0_1($objPage) {
+	global $objWebParam;
+	global $objDBParam;
+	// hidden¤ËÆþÎÏÃÍ¤òÊÝ»ý
+	$objPage->arrHidden = $objWebParam->getHashArray();
+	// hidden¤ËÆþÎÏÃÍ¤òÊÝ»ý
+	$objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
+	$objPage->arrHidden['db_skip'] = $_POST['db_skip'];
+	$objPage->tpl_mainpage = 'step0_1.tpl';
+	$objPage->tpl_mode = 'step0_1';
+	// ¥Õ¥¡¥¤¥ë¥³¥Ô¡¼
+	$objPage->copy_mess = sfCopyDir("./user_data/", "../user_data/", $objPage->copy_mess);
+	$objPage->copy_mess = sfCopyDir("./save_image/", "../upload/save_image/", $objPage->copy_mess);	
+	return $objPage;
+}
 
 // STEP0_2²èÌÌ¤ÎÉ½¼¨(¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼) 
Index: branches/dev/html/install/templates/agreement.tpl
===================================================================
--- branches/dev/html/install/templates/agreement.tpl	(revision 11491)
+++ branches/dev/html/install/templates/agreement.tpl	(revision 11492)
@@ -47,5 +47,5 @@
 </tr>
 <!--{assign var=key value="send_info"}-->
-<tr><td align="left" class="fs12"><input type="radio" id="agreement_yes" name="<!--{$key}-->" value=1 onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if $arrForm[$key].value|escape}-->checked<!--{/if}-->><label for="agreement_yes">Æ±°Õ¤¹¤ë</label>¡¡<input type="radio" id="agreement_no" name="<!--{$key}-->" value=false onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if !$arrForm[$key].value|escape}-->checked<!--{/if}-->><label for="agreement_no">Æ±°Õ¤·¤Ê¤¤</label></td></tr>
+<tr><td align="left" class="fs12"><input type="radio" id="agreement_yes" name="<!--{$key}-->" value=true onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if $arrForm[$key].value|escape}-->checked<!--{/if}-->><label for="agreement_yes">Æ±°Õ¤¹¤ë</label>¡¡<input type="radio" id="agreement_no" name="<!--{$key}-->" value=false onclick="fnChangeVisible('agreement_yes', 'next');" <!--{if !$arrForm[$key].value|escape}-->checked<!--{/if}-->><label for="agreement_no">Æ±°Õ¤·¤Ê¤¤</label></td></tr>
 </table>
 
