Index: temp/trunk/html/install/index.php
===================================================================
--- temp/trunk/html/install/index.php	(revision 6832)
+++ temp/trunk/html/install/index.php	(revision 6833)
@@ -402,11 +402,15 @@
 	$objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
 	
-	
-	$objPage->tpl_site_url = $objWebParam->getValue('normal_url');;
-	$objPage->tpl_shop_name = $objWebParam->getValue('shop_name');;
+	$normal_url = $objWebParam->getValue('normal_url');
+	// ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
+	if (!ereg("/$", $normal_url)) $normal_url = $normal_url . "/";
+	
+	$objPage->tpl_site_url = $normal_url;
+	$objPage->tpl_shop_name = $objWebParam->getValue('shop_name');
 	$objPage->tpl_cube_ver = ECCUBE_VERSION;
-	$objPage->tpl_php_ver = phpversion();;
+	$objPage->tpl_php_ver = phpversion();
 	$objPage->tpl_db_ver = "";//sfGetDBVersion($dsn);
 	
+	sfprintr( $objWebParam->getHashArray());
 	
 	$objPage->tpl_mainpage = 'step4.tpl';
