Index: /controller/wpsg_ProduktController.class.php
===================================================================
--- /controller/wpsg_ProduktController.class.php	(revision 6444)
+++ /controller/wpsg_ProduktController.class.php	(revision 6445)
@@ -285,29 +285,31 @@
 				$zip->addFile($product_export_file, 'productdata.csv');
 			
-				// Bilddaten
-				if ($this->shop->hasMod('wpsg_mod_produktbilder'))
-				{
-				
-					foreach ($arData as $d)
+				// Bilddaten 				
+				foreach ($arData as $d)
+				{
+				
+					$arAttachmentIDs = $this->imagehandler->getAttachmentIDs($d['id']);
+				
+					if (wpsg_isSizedArray($arAttachmentIDs))
 					{
-											
-						$arImages = $this->shop->callMod('wpsg_mod_produktbilder', 'getProduktBilder_MT', array($d['id'], 'full'));
-						 
-						if (wpsg_isSizedArray($arImages))
+					
+						$zip->addEmptyDir($d['id']);
+						
+						foreach ($arAttachmentIDs as $attachment_id)
 						{
-						 
-							$zip->addEmptyDir($d['id']); 
+						
+							$file = get_attached_file($attachment_id);
 							
-							foreach ($arImages as $i)
+							if (file_exists($file) && is_file($file)) 
 							{
-								
-								$zip->addFile($i['path'], $d['id'].'/'.$i['basename']);
+								 
+								$zip->addFile($file, $d['id'].'/'.basename($file));
 								
 							}
-														
+							
 						}
-                        					
+						
 					}
-				
+					
 				}
 				
