Index: /temp/trunk/html/admin/products/product.php
===================================================================
--- /temp/trunk/html/admin/products/product.php	(revision 10037)
+++ /temp/trunk/html/admin/products/product.php	(revision 10273)
@@ -560,17 +560,21 @@
 	}
 	
-	// ¸µ²èÁü¥µ¥¤¥º¤ò¼èÆÀ
-	list($from_w, $from_h) = getimagesize($from_path);
-	
-	// À¸À®Àè¤Î²èÁü¥µ¥¤¥º¤ò¼èÆÀ
-	$to_w = $objUpFile->width[$arrImageKey[$to_key]];
-	$to_h = $objUpFile->height[$arrImageKey[$to_key]];
-	
-	
-	if($forced) $objUpFile->save_file[$arrImageKey[$to_key]] = "";
-	
-	if(($objUpFile->temp_file[$arrImageKey[$to_key]] == "" and $objUpFile->save_file[$arrImageKey[$to_key]] == "")){
-		$path = $objUpFile->makeThumb($from_path, $to_w, $to_h);
-		$objUpFile->temp_file[$arrImageKey[$to_key]] = basename($path);
+	if(file_exists($from_path)){
+		// ¸µ²èÁü¥µ¥¤¥º¤ò¼èÆÀ
+		list($from_w, $from_h) = getimagesize($from_path);
+		
+		// À¸À®Àè¤Î²èÁü¥µ¥¤¥º¤ò¼èÆÀ
+		$to_w = $objUpFile->width[$arrImageKey[$to_key]];
+		$to_h = $objUpFile->height[$arrImageKey[$to_key]];
+		
+		
+		if($forced) $objUpFile->save_file[$arrImageKey[$to_key]] = "";
+		
+		if(($objUpFile->temp_file[$arrImageKey[$to_key]] == "" and $objUpFile->save_file[$arrImageKey[$to_key]] == "")){
+			$path = $objUpFile->makeThumb($from_path, $to_w, $to_h);
+			$objUpFile->temp_file[$arrImageKey[$to_key]] = basename($path);
+		}
+	}else{
+		return "";
 	}
 }
