Index: /temp/trunk/html/admin/system/bkup.php
===================================================================
--- /temp/trunk/html/admin/system/bkup.php	(revision 8893)
+++ /temp/trunk/html/admin/system/bkup.php	(revision 8894)
@@ -90,12 +90,13 @@
 // ¥À¥¦¥ó¥í¡¼¥É
 case 'download' :
-	$file = $objPage->bkup_dir."test.tar.gz";
+	$filename = "test.tar.gz";
+	$file = $objPage->bkup_dir.$filename;
 	
 	// ¥À¥¦¥ó¥í¡¼¥É 
 	//mb_http_output("pass"); 
 	
-	header("Content-Disposition: attachment;filename=" .$file. "\""); 
-	header("Content-Length: " .filesize($file .".gz")); 
-	header("Content-Type: application/octet-stream; name=" .$file. "\""); 
+	header("Content-Disposition: attachment;filename=" .$filename. "\""); 
+	header("Content-Length: " .filesize($file)); 
+	header("Content-Type: application/octet-stream; name=" .$filename. "\""); 
 	readfile ($file);
 	exit();
