Index: temp/trunk/html/admin/system/bkup.php
===================================================================
--- temp/trunk/html/admin/system/bkup.php	(revision 5669)
+++ temp/trunk/html/admin/system/bkup.php	(revision 5670)
@@ -211,4 +211,21 @@
 }
 
+/* ÇÛÎó¤ÎÍ×ÁÇ¤òCSV¥Õ¥©¡¼¥Þ¥Ã¥È¤Ç½ÐÎÏ¤¹¤ë¡£*/
+function lfGetCSVList($array) {
+	if (count($array) > 0) {
+		foreach($array as $key => $val) {
+			if ($val = "") {
+				$line .= "".null.",";
+			}else{
+				$line .= "'".$val."',";
+			}
+		}
+		$line = ereg_replace(",$", "\n", $line);
+		return $line;
+	}else{
+		return false;
+	}
+}
+
 // Á´¥Æ¡¼¥Ö¥ë¥ê¥¹¥È¤ò¼èÆÀ¤¹¤ë
 function lfGetTableList(){
@@ -336,5 +353,4 @@
 		sfprintr($sql);
 	}
-		
 }
 
