Index: temp/trunk/html/admin/system/bkup.php
===================================================================
--- temp/trunk/html/admin/system/bkup.php	(revision 10142)
+++ temp/trunk/html/admin/system/bkup.php	(revision 10143)
@@ -294,16 +294,14 @@
 	if (count($array) > 0) {
 		foreach($array as $key => $val) {
-			if ($val == "") {
-				$line .= "NULL,";
-			}else{
-				$data = str_replace("\"", "\\\"", $val);
-				$line .= "\"".$data."\",";
-			}
-			$line = ereg_replace(",$", "\n", $line);
-		}
+			$val = mb_convert_encoding($val, CHAR_CODE, CHAR_CODE);
+			$val = str_replace("\"", "\\\"", $val);
+			$line .= "\"".$val."\",";
+		}
+		$line = ereg_replace(",$", "\n", $line);
+	}else{
+		return false;
 	}
 	return $line;
 }
-
 
 // Á´¥Æ¡¼¥Ö¥ë¥ê¥¹¥È¤ò¼èÆÀ¤¹¤ë
