Index: /temp/trunk/html/install/index.php
===================================================================
--- /temp/trunk/html/install/index.php	(revision 6059)
+++ /temp/trunk/html/install/index.php	(revision 6060)
@@ -397,4 +397,5 @@
 	$objPage->tpl_mainpage = 'complete.tpl';
 	$objPage->tpl_mode = 'complete';
+	$objPage->tpl_siteurl = $objWebParam->getValue('normal_url');	
 	return $objPage;
 }
@@ -583,4 +584,16 @@
 	}
 	
+	$normal_url = $objWebParam->getValue('normal_url');
+	// ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
+	if (!ereg("/$", $normal_url)) {
+		$normal_url = $normal_url . "/";
+	}
+	
+	$secure_url = $objWebParam->getValue('secure_url');
+	// ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
+	if (!ereg("/$", $secure_url)) {
+		$secure_url = $secure_url . "/";
+	}
+			
 	$filepath = $objWebParam->getValue('install_dir') . "../data/install.inc";
 	
