diff --git a/web/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php b/web/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php index 0dccefe9..d0224909 100644 --- a/web/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php +++ b/web/typo3conf/ext/ep_products/Classes/Controller/ResellerController.php @@ -132,6 +132,18 @@ class ResellerController extends ActionController $fileHandle = fopen('php://output', 'wb'); + fputcsv($fileHandle, [ + 'id', + 'availability', + 'condition', + 'description', + 'image_link', + 'link', + 'title', + 'price', + 'brand', + ]); + foreach ($data['product'] as $product) { $minPrice = null;